Former-commit-id: cca4a602a009218807fda330ebc0cb9090da2088
Former-commit-id: 8dd278ae4f8e72655e45a39a180392565626d810
TSXN
wanggang 5 years ago
parent 7dfb8e72bf
commit 7380466fd8

@ -61,6 +61,11 @@
"library": "ant-design-vue@1.5.3",
"destination": "wwwroot/lib/ant-design-vue",
"files": [ "antd.min.css", "antd.min.js" ]
},
{
"library": "element-ui@2.13.2",
"destination": "wwwroot/lib/element-ui",
"files": ["index.js","theme-chalk/index.css","theme-chalk/fonts/element-icons.ttf","theme-chalk/fonts/element-icons.woff"]
}
]
}

@ -4,6 +4,7 @@
<meta charset="utf-8" />
<link rel="stylesheet" href="lib/bootstrap-vue/bootstrap-vue.min.css" />
<link rel="stylesheet" href="lib/ant-design-vue/antd.min.css" />
<link rel="stylesheet" href="lib/element-ui/theme-chalk/index.css" />
<title>loading</title>
</head>
<body>
@ -22,6 +23,7 @@
<script src="lib/moment.js/moment.min.js"></script>
<script src="lib/moment.js/locale/zh-cn.js"></script>
<script src="lib/ant-design-vue/antd.min.js"></script>
<script src="lib/element-ui/index.js"></script>
<script src="js/common.js"></script>
<script src="js/config.js"></script>
<script src="js/route.js"></script>

@ -24,7 +24,7 @@ router.beforeEach((to, from, next) => {
component: model,
meta: model.meta
};
route.meta.path = to.fullPath;
route.meta.path = to.path;
router.addRoutes([route]);
routes[name] = route;
router.push(to.path);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save