+
+
+
\ No newline at end of file
diff --git a/src/main.js b/src/main.js
index 6189e19ed..9c5fd43ac 100644
--- a/src/main.js
+++ b/src/main.js
@@ -8,6 +8,8 @@ import ListBox from './components/listbox/ListBox';
import Panel from './components/panel/Panel';
import Textarea from './components/textarea/Textarea';
import Toolbar from './components/toolbar/Toolbar';
+import TabView from './components/tabview/TabView';
+import TabPanel from './components/tabview/TabPanel';
import './assets/styles/primevue.css';
import 'primeflex/primeflex.css';
@@ -20,8 +22,10 @@ Vue.component('p-button', Button);
Vue.component('p-listBox', ListBox);
Vue.component('p-panel', Panel);
Vue.component('p-fieldset', Fieldset);
-Vue.component('p-toolbar', Toolbar);
+Vue.component('p-tabView', TabView);
+Vue.component('p-tabPanel', TabPanel);
Vue.component('p-textarea', Textarea);
+Vue.component('p-toolbar', Toolbar);
new Vue({
router,
diff --git a/src/router.js b/src/router.js
index 9b9316dfb..e8b835ec5 100644
--- a/src/router.js
+++ b/src/router.js
@@ -46,6 +46,11 @@ export default new Router({
name: 'textarea',
component: () => import('./views/textarea/TextareaDemo.vue')
},
+ {
+ path: '/tabview',
+ name: 'tabview',
+ component: () => import('./views/tabview/TabViewDemo.vue')
+ },
{
path: '/toolbar',
name: 'toolbar',
diff --git a/src/views/tabview/TabViewDemo.vue b/src/views/tabview/TabViewDemo.vue
new file mode 100644
index 000000000..81be958c3
--- /dev/null
+++ b/src/views/tabview/TabViewDemo.vue
@@ -0,0 +1,71 @@
+
+
+
+
+
TabView
+
TabView is a container component to group content with tabs.
+
+
+
+
+
Basic
+
+
+ The story begins as Don Vito Corleone, the head of a New York Mafia family, overseeshis daughter's wedding. His beloved son ichael has just come home from the war,
+ but does not intend to become part of his father's business. Through Michael's life the nature of the family business becomes clear. The business of the family is
+ just like the head of the family, kind and benevolent to those who give respect, but given to ruthless violence whenever anything stands against the good of the family.
+
+
+ Francis Ford Coppola's legendary continuation and sequel to his landmark 1972 film, TheGodfather parallels the young Vito Corleone's rise with his son Michael's spiritual fall,
+ deepening The Godfather's depiction of the dark side of the American dream. In the early 1900s, the child Vito flees his Sicilian village for America after the local Mafia kills
+ his family. Vito struggles to make a living, legally or illegally, for his wife and growing brood in Little Italy.
+
+
+ The Godfather Part III is set in 1979 and 1980. Michael has moved back to New York and taken great strides to remove the family from crime. He turns over his New York criminal
+ interests to longtime enforcer Joey Zasa. He uses his wealth in an attempt to rehabilitate his reputation through numerous philanthropic acts, administered by a foundation named after his father.
+ A decade earlier, he gave custody of his two children to Kay, who has since remarried.
+
+
+
+
Programmatic
+
+
+
+
+
+ The story begins as Don Vito Corleone, the head of a New York Mafia family, overseeshis daughter's wedding. His beloved son ichael has just come home from the war,
+ but does not intend to become part of his father's business. Through Michael's life the nature of the family business becomes clear. The business of the family is
+ just like the head of the family, kind and benevolent to those who give respect, but given to ruthless violence whenever anything stands against the good of the family.
+
+
+ Francis Ford Coppola's legendary continuation and sequel to his landmark 1972 film, TheGodfather parallels the young Vito Corleone's rise with his son Michael's spiritual fall,
+ deepening The Godfather's depiction of the dark side of the American dream. In the early 1900s, the child Vito flees his Sicilian village for America after the local Mafia kills
+ his family. Vito struggles to make a living, legally or illegally, for his wife and growing brood in Little Italy.
+
+
+ The Godfather Part III is set in 1979 and 1980. Michael has moved back to New York and taken great strides to remove the family from crime. He turns over his New York criminal
+ interests to longtime enforcer Joey Zasa. He uses his wealth in an attempt to rehabilitate his reputation through numerous philanthropic acts, administered by a foundation named after his father.
+ A decade earlier, he gave custody of his two children to Kay, who has since remarried.
+
+
+