工作流表单+模型代码提交

This commit is contained in:
2024-05-09 14:18:39 +08:00
parent eeef608ccd
commit 06611f527a
266 changed files with 18227 additions and 22039 deletions

View File

@@ -1,6 +1,7 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import AutoImport from 'unplugin-auto-import/vite'
import { svgBuilder } from '/@/components/icon/svg/index'
import path from 'path'
@@ -8,7 +9,12 @@ import path from 'path'
const nodeResolve = (dir: string): any => path.resolve(__dirname, '.', dir)
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(), svgBuilder('./src/assets/icons/'), vueJsx()],
plugins: [vue(), svgBuilder('./src/assets/icons/'), vueJsx(),
AutoImport({
//自动引入
imports: ["vue", "vue-router","pinia"],
}),
],
server: {
host: '0.0.0.0',
open: true,