diff --git a/doc/dataview/StyleDoc.vue b/doc/dataview/theming/StyledDoc.vue similarity index 100% rename from doc/dataview/StyleDoc.vue rename to doc/dataview/theming/StyledDoc.vue diff --git a/doc/dataview/theming/UnstyledDoc.vue b/doc/dataview/theming/UnstyledDoc.vue new file mode 100644 index 000000000..7147f4a26 --- /dev/null +++ b/doc/dataview/theming/UnstyledDoc.vue @@ -0,0 +1,148 @@ + + + diff --git a/doc/dataview/theming/index.vue b/doc/dataview/theming/index.vue new file mode 100644 index 000000000..0333a0c6c --- /dev/null +++ b/doc/dataview/theming/index.vue @@ -0,0 +1,33 @@ + + + diff --git a/doc/orderlist/BasicDoc.vue b/doc/orderlist/BasicDoc.vue index 4306ced83..fdc77fba3 100644 --- a/doc/orderlist/BasicDoc.vue +++ b/doc/orderlist/BasicDoc.vue @@ -111,7 +111,7 @@ import { ProductService } from '@/service/ProductService' const products = ref(null); onMounted(() => { - ProductService.getProductsSmall().then((data) => (this.products = data)); + ProductService.getProductsSmall().then((data) => (products.value = data)); }); <\/script>`, data: ` diff --git a/doc/orderlist/StyleDoc.vue b/doc/orderlist/theming/StyledDoc.vue similarity index 100% rename from doc/orderlist/StyleDoc.vue rename to doc/orderlist/theming/StyledDoc.vue diff --git a/doc/orderlist/theming/UnstyledDoc.vue b/doc/orderlist/theming/UnstyledDoc.vue new file mode 100644 index 000000000..6fe4f50f2 --- /dev/null +++ b/doc/orderlist/theming/UnstyledDoc.vue @@ -0,0 +1,69 @@ + + + diff --git a/doc/orderlist/theming/index.vue b/doc/orderlist/theming/index.vue new file mode 100644 index 000000000..d0e0c12d3 --- /dev/null +++ b/doc/orderlist/theming/index.vue @@ -0,0 +1,33 @@ + + + diff --git a/doc/picklist/StyleDoc.vue b/doc/picklist/theming/StyledDoc.vue similarity index 100% rename from doc/picklist/StyleDoc.vue rename to doc/picklist/theming/StyledDoc.vue diff --git a/doc/picklist/theming/UnstyledDoc.vue b/doc/picklist/theming/UnstyledDoc.vue new file mode 100644 index 000000000..f9e89aea1 --- /dev/null +++ b/doc/picklist/theming/UnstyledDoc.vue @@ -0,0 +1,72 @@ + + + diff --git a/doc/picklist/theming/index.vue b/doc/picklist/theming/index.vue new file mode 100644 index 000000000..76e634c67 --- /dev/null +++ b/doc/picklist/theming/index.vue @@ -0,0 +1,33 @@ + + + diff --git a/pages/dataview/index.vue b/pages/dataview/index.vue index 4ea9984da..f344a5393 100755 --- a/pages/dataview/index.vue +++ b/pages/dataview/index.vue @@ -6,6 +6,7 @@ :componentDocs="docs" :apiDocs="['DataView', 'DataViewLayoutOptions']" :ptTabComponent="ptComponent" + :themingDocs="themingDoc" /> @@ -18,8 +19,8 @@ import LoadingDoc from '@/doc/dataview/LoadingDoc'; import PaginationDoc from '@/doc/dataview/PaginationDoc'; import PrimeFlexDoc from '@/doc/dataview/PrimeFlexDoc'; import SortingDoc from '@/doc/dataview/SortingDoc'; -import StyleDoc from '@/doc/dataview/StyleDoc'; import PTComponent from '@/doc/dataview/pt/index.vue'; +import ThemingDoc from '@/doc/dataview/theming/index.vue'; export default { data() { @@ -60,18 +61,14 @@ export default { label: 'Loading', component: LoadingDoc }, - { - id: 'style', - label: 'Style', - component: StyleDoc - }, { id: 'accessibility', label: 'Accessibility', component: AccessibilityDoc } ], - ptComponent: PTComponent + ptComponent: PTComponent, + themingDoc: ThemingDoc }; } }; diff --git a/pages/orderlist/index.vue b/pages/orderlist/index.vue index 352922200..79677a806 100755 --- a/pages/orderlist/index.vue +++ b/pages/orderlist/index.vue @@ -1,13 +1,13 @@