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

@@ -49,9 +49,13 @@ const props = defineProps({
}
});
const model = defineModel();
const model = defineModel('model', {
type: Number
});
const index = defineModel('index');
const index = defineModel('index', {
type: Number
});
const emit = defineEmits(['change']);
const renderScore = (min, max, interval) => {
const result = [];