Commit 8278ca65 by huangqy

提交

parent a29798cd
......@@ -20,6 +20,7 @@
"vue-router": "^4.1.6"
},
"devDependencies": {
"@vitejs/plugin-legacy": "^5.3.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.2.6",
"jsdom": "^20.0.3",
......
......@@ -325,7 +325,7 @@ export default defineComponent({
const { proxy } = getCurrentInstance()
const channelList = ref([]);
const sysForm = ref({})
const logData = ref([])
const logData = ref('')
const visible = ref(false)
const formData = ref({})
const activeTab = ref()
......
......@@ -5,6 +5,8 @@ import vue from '@vitejs/plugin-vue'
import { createStyleImportPlugin } from 'vite-plugin-style-import';
import legacy from '@vitejs/plugin-legacy'
// https://vitejs.dev/config/
export default defineConfig({
base: '', // 开发或生产环境服务的公共基础路径 配置引入相对路径
......@@ -20,6 +22,9 @@ export default defineConfig({
},
// plugins: [vue()],
plugins: [vue(),
legacy({
targets: ['defaults', 'ie >= 11', 'chrome 52'], //需要兼容的目标列表,可以设置多个
}),
createStyleImportPlugin({
libs: [
{
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论