2022-09-09 20:41:18 +00:00
< template >
2023-07-27 06:42:04 +00:00
< DocComponent title = "Vue OrderList Component" header = "OrderList" description = "OrderList is used to sort a collection." :componentDocs ="docs" :apiDocs ="['OrderList']" :ptTabComponent ="ptComponent" :themingDocs ="themingDoc" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2023-02-28 08:29:30 +00:00
import AccessibilityDoc from '@/doc/orderlist/AccessibilityDoc.vue' ;
import BasicDoc from '@/doc/orderlist/BasicDoc.vue' ;
import ImportDoc from '@/doc/orderlist/ImportDoc.vue' ;
2023-05-09 16:04:28 +00:00
import PTComponent from '@/doc/orderlist/pt/index.vue' ;
2023-07-27 06:42:04 +00:00
import ThemingDoc from '@/doc/orderlist/theming/index.vue' ;
2023-05-09 16:04:28 +00:00
2022-09-09 20:41:18 +00:00
export default {
data ( ) {
return {
2023-02-28 08:29:30 +00:00
docs : [
{
id : 'import' ,
label : 'Import' ,
component : ImportDoc
} ,
{
id : 'basic' ,
label : 'Basic' ,
component : BasicDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
2023-05-09 16:04:28 +00:00
] ,
2023-07-27 06:42:04 +00:00
ptComponent : PTComponent ,
themingDoc : ThemingDoc
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >