feat: 修复 eslint 报错, 删除多余生成文件

- 删除 vite.config.ts 自动生成的 vite.config.ts.timestamp...
- eslint 报错修复
This commit is contained in:
Huangzhe
2025-03-17 10:47:49 +08:00
parent 5060539964
commit 283e07a022
30 changed files with 278 additions and 418 deletions

View File

@@ -79,10 +79,10 @@ import OptionAction from '@/views/Design/components/ActionCompoents/OptionAction
import { defineAsyncComponent, toRefs, ref } from 'vue';
// 是否是预览
const isPreview = defineModel('isPreview', { default: false });
const isPreview = defineModel('isPreview', { default: false, type: Booleans });
const choiceValue = defineModel('answer', { default: '1', type: String });
console.log(`choiceValue.value`, choiceValue.value);
// console.log(`choiceValue.value`, choiceValue.value);
const Contenteditable = defineAsyncComponent(() => import('@/components/contenteditable.vue'));
const props = defineProps({