Merge remote-tracking branch 'origin/leng_dev' into lei_dev

This commit is contained in:
aeizzz 2023-03-03 17:54:34 +08:00
commit 001a049f44
3 changed files with 5 additions and 11 deletions

View File

@ -1,6 +1,9 @@
# port 端口号
VITE_PORT = 8888
#浏览器自动打开
VITE_OPEN = true
# 本地环境
ENV = 'development'

View File

@ -59,8 +59,8 @@ export const svgBuilder = (path: string, perfix = 'local') => {
`
<body>
<svg id="local-icon" data-icon-name="${iconNames.join(
','
)}" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position: absolute; width: 0; height: 0">
','
)}" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="position: absolute; width: 0; height: 0">
${res.join('')}
</svg>
`

View File

@ -134,14 +134,5 @@ export const staticRoutes: Array<RouteRecordRaw> = [
title: "登录",
isAuth: false
}
},
{
path: '/demo',
name: 'demo',
component: () => import('/@/views/demo/form.vue'),
meta: {
title: "表单demo",
isAuth: false
}
}
];