index.js 332 B

12345678910111213141516
  1. import { VantComponent } from '../../../common/component';
  2. VantComponent({
  3. props: {
  4. title: {
  5. type: String,
  6. value: '日期选择',
  7. },
  8. subtitle: String,
  9. showTitle: Boolean,
  10. showSubtitle: Boolean,
  11. },
  12. data: {
  13. weekdays: ['日', '一', '二', '三', '四', '五', '六'],
  14. },
  15. methods: {},
  16. });