2022-09-09 20:41:18 +00:00
< template >
2024-04-18 14:22:30 +00:00
< DocComponent title = "Vue DatePicker Component" header = "DatePicker" description = "DatePicker is a form component to work with dates." :componentDocs ="docs" :apiDocs ="['DatePicker']" :ptTabComponent ="ptComponent" :themingDocs ="themingDoc" / >
2022-09-09 20:41:18 +00:00
< / template >
< script >
2024-04-18 14:22:30 +00:00
import AccessibilityDoc from '@/doc/datepicker/AccessibilityDoc' ;
import BasicDoc from '@/doc/datepicker/BasicDoc.vue' ;
import ButtonBarDoc from '@/doc/datepicker/ButtonBarDoc.vue' ;
import DateTemplateDoc from '@/doc/datepicker/DateTemplateDoc.vue' ;
import DisabledDoc from '@/doc/datepicker/DisabledDoc.vue' ;
import FilledDoc from '@/doc/datepicker/FilledDoc.vue' ;
import FloatLabelDoc from '@/doc/datepicker/FloatLabelDoc.vue' ;
import FormatDoc from '@/doc/datepicker/FormatDoc.vue' ;
2024-10-23 12:21:38 +00:00
import FormsDoc from '@/doc/datepicker/FormsDoc.vue' ;
2024-04-18 14:22:30 +00:00
import IconDoc from '@/doc/datepicker/IconDoc.vue' ;
2024-09-20 10:47:24 +00:00
import IftaLabelDoc from '@/doc/datepicker/IftaLabelDoc.vue' ;
2024-10-25 20:13:22 +00:00
import SizesDoc from '@/doc/datepicker/SizesDoc.vue' ;
2024-04-18 14:22:30 +00:00
import ImportDoc from '@/doc/datepicker/ImportDoc.vue' ;
import InlineDoc from '@/doc/datepicker/InlineDoc.vue' ;
import InvalidDoc from '@/doc/datepicker/InvalidDoc.vue' ;
import LocaleDoc from '@/doc/datepicker/LocaleDoc.vue' ;
import MinMaxDoc from '@/doc/datepicker/MinMaxDoc.vue' ;
import MonthPickerDoc from '@/doc/datepicker/MonthPickerDoc.vue' ;
import MultipleDoc from '@/doc/datepicker/MultipleDoc.vue' ;
import MultipleMonthsDoc from '@/doc/datepicker/MultipleMonthsDoc.vue' ;
import RangeDoc from '@/doc/datepicker/RangeDoc.vue' ;
import TimeDoc from '@/doc/datepicker/TimeDoc.vue' ;
import YearPickerDoc from '@/doc/datepicker/YearPickerDoc.vue' ;
import PTComponent from '@/doc/datepicker/pt/index.vue' ;
import ThemingDoc from '@/doc/datepicker/theming/index.vue' ;
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
} ,
{
2024-10-23 12:21:38 +00:00
id : 'forms' ,
label : 'Forms' ,
component : FormsDoc
2024-10-23 06:55:59 +00:00
} ,
{
2023-02-28 08:29:30 +00:00
id : 'format' ,
label : 'Format' ,
component : FormatDoc
} ,
{
id : 'locale' ,
label : 'Locale' ,
component : LocaleDoc
} ,
{
id : 'icon' ,
label : 'Icon' ,
component : IconDoc
} ,
{
id : 'minmax' ,
label : 'Min / Max' ,
component : MinMaxDoc
} ,
{
id : 'multiple' ,
label : 'Multiple' ,
component : MultipleDoc
} ,
{
id : 'range' ,
label : 'Range' ,
component : RangeDoc
} ,
{
id : 'button' ,
label : 'Button Bar' ,
component : ButtonBarDoc
} ,
{
id : 'time' ,
label : 'Time' ,
component : TimeDoc
} ,
{
id : 'monthpicker' ,
label : 'Month Picker' ,
component : MonthPickerDoc
} ,
{
id : 'yearpicker' ,
label : 'Year Picker' ,
component : YearPickerDoc
} ,
{
id : 'multiplemonths' ,
label : 'Multiple Months' ,
component : MultipleMonthsDoc
} ,
{
id : 'datetemplate' ,
label : 'Date Template' ,
component : DateTemplateDoc
} ,
{
id : 'inline' ,
label : 'Inline' ,
component : InlineDoc
} ,
2024-09-30 09:25:22 +00:00
{
id : 'filled' ,
label : 'Filled' ,
component : FilledDoc
} ,
2023-02-28 08:29:30 +00:00
{
id : 'floatlabel' ,
label : 'Float Label' ,
component : FloatLabelDoc
} ,
2024-09-20 10:47:24 +00:00
{
id : 'iftalabel' ,
label : 'Ifta Label' ,
component : IftaLabelDoc
} ,
2024-10-25 20:13:22 +00:00
{
2024-10-26 10:41:04 +00:00
id : 'sizes' ,
2024-10-25 20:13:22 +00:00
label : 'Sizes' ,
component : SizesDoc
} ,
2023-02-28 08:29:30 +00:00
{
id : 'invalid' ,
label : 'Invalid' ,
component : InvalidDoc
} ,
{
id : 'disabled' ,
label : 'Disabled' ,
component : DisabledDoc
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
2022-09-09 20:41:18 +00:00
}
2023-05-04 14:51:43 +00:00
] ,
2023-07-26 13:22:13 +00:00
ptComponent : PTComponent ,
themingDoc : ThemingDoc
2022-09-09 20:41:18 +00:00
} ;
}
} ;
< / script >