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