智慧申请系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
332 B

  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. });