修复路由
This commit is contained in:
@@ -16,7 +16,6 @@ a, .green {
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.fill {
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
import Vue from 'vue'
|
||||
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
|
||||
import './assets/main.css'
|
||||
|
||||
new Vue({
|
||||
|
||||
@@ -3,21 +3,15 @@ import VueRouter from 'vue-router'
|
||||
|
||||
Vue.use(VueRouter)
|
||||
const ctx = import.meta.glob('../views/App*.vue', {eager: true})
|
||||
const router = new VueRouter({
|
||||
mode: 'history', routes: [{
|
||||
path: '/', name: 'home',
|
||||
}]
|
||||
})
|
||||
const routes = []
|
||||
console.log(ctx)
|
||||
await Promise.all(Object.values(ctx).map(file => {
|
||||
const routes = [{path: '/', name: 'home'}]
|
||||
Object.values(ctx).map(file => {
|
||||
if (file.default) {
|
||||
let {name, label = name, path = name} = file.default
|
||||
routes.push({name, path, label})
|
||||
return router.addRoute("home", {path, name, component: () => file.default})
|
||||
|
||||
let {name, label = name, path = `/apps/${name}`} = file.default
|
||||
routes.push({name, path, label, component: file.default})
|
||||
}
|
||||
})).then(() => {
|
||||
localStorage.setItem('routes', JSON.stringify(routes))
|
||||
})
|
||||
export default router
|
||||
localStorage.setItem('routes', JSON.stringify(routes.slice(1).map(v => ({name: v.name, label: v.label, path: v.path}))))
|
||||
|
||||
export default new VueRouter({
|
||||
mode: 'history', routes
|
||||
})
|
||||
|
||||
@@ -6,11 +6,13 @@ export default {
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="AppSpanTable"></section>
|
||||
<section class="AppSpanTable">
|
||||
ASDASD
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.AppSpanTable {
|
||||
|
||||
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user