feat: 新增 GiEditTable 编辑表格组件(同步 GiDemo 更新)

This commit is contained in:
2024-10-27 19:51:35 +08:00
parent 26291a1e44
commit b46235b7ed
7 changed files with 414 additions and 126 deletions

View File

@@ -2,12 +2,11 @@ import autoImport from 'unplugin-auto-import/vite'
export default function createAutoImport() {
return autoImport({
// 自动导入 vue 相关函数,如: ref、reactive、toRef等
imports: [
'vue',
'vue-router',
'pinia'
],
// 自动导入 vue 相关函数
imports: ['vue', 'vue-router', {
// vue 3.5.x
vue: ['useTemplateRef', 'onWatcherCleanup', 'useId']
}],
dts: './src/types/auto-imports.d.ts'
})
}