05-10
parent
21fcdd76e5
commit
f55e9e80ed
@ -0,0 +1,3 @@
|
||||
#.env.development 开发
|
||||
NODE_ENV='development'
|
||||
VUE_APP_AXIOS_BASEURL='/api'
|
@ -0,0 +1,3 @@
|
||||
#.env.production 正式
|
||||
NODE_ENV='production'
|
||||
VUE_APP_AXIOS_BASEURL='/api'
|
@ -1,7 +1,6 @@
|
||||
import Index from "../views/AmsIndex.vue";
|
||||
// import IndexEdit from "../views/AmsIndexEdit.vue";
|
||||
export const routes = [
|
||||
{ path: "/", redirect: "/Index" },
|
||||
{ path: "/Index", component: Index },
|
||||
{ path: "/", component: Index },
|
||||
{ path: "*", redirect: "/" },
|
||||
];
|
||||
|
Loading…
Reference in New Issue