import { ApiEntity } from '@/views/entity/demoentity'; const base: ApiEntity = { title: '定制绑定值格式', desc: '需要设置 valueFormatformat', code: '', js: ` { data() { return { valueDate: '10-10-10', }; }, methods: { change(params) { console.log(params, 'timepicker change'); }, }, } `, }; export default base;