This commit is contained in:
zhanghongmin 2022-03-09 18:05:34 +08:00
parent d985fd26f8
commit f62477a347
2 changed files with 79 additions and 40 deletions

View File

@ -1,13 +1,11 @@
<template> <template>
<div style="display: flex;"> <div style="display: flex;">
<el-row class="tac" style="width:30%"> <el-row class="tac">
<el-col :span="12"> <el-col :span="12" style="width:100%">
<h5>自定义颜色</h5> <h5>自定义颜色</h5>
<el-menu <el-menu
default-active="2" default-active="2"
class="el-menu-vertical-demo" class="el-menu-vertical-demo"
@open="handleOpen"
@close="handleClose"
background-color="#545c64" background-color="#545c64"
text-color="#fff" text-color="#fff"
active-text-color="#ffd04b"> active-text-color="#ffd04b">
@ -18,8 +16,10 @@
</template> </template>
<el-menu-item-group> <el-menu-item-group>
<template slot="title">分组一</template> <template slot="title">分组一</template>
<el-menu-item index="1-1" @click="$router.push('/login/abc')">选项1</el-menu-item> <el-menu-item index="1-1" @click="$router.push('/login/abc'),onComplete => {},
<el-menu-item index="1-2" @click="$router.push('/login/user')">选项2</el-menu-item> onAbort => {}">helloword</el-menu-item>
<el-menu-item index="1-2" @click="$router.push('/login/user'),onComplete => {},
onAbort => {}">user</el-menu-item>
</el-menu-item-group> </el-menu-item-group>
<el-menu-item-group title="分组2"> <el-menu-item-group title="分组2">
<el-menu-item index="1-3">选项3</el-menu-item> <el-menu-item index="1-3">选项3</el-menu-item>

View File

@ -1,49 +1,88 @@
// js 导入 模块式开发 // js 导入 模块式开发
import Vue from 'vue' import Vue from "vue";
// 导入 App.vue // 导入 App.vue
import App from './App.vue' import App from "./App.vue";
// import zujian from "./components/zujian.vue" // import zujian from "./components/zujian.vue"
import HelloWorld from "./components/HelloWorld.vue" import HelloWorld from "./components/HelloWorld.vue";
import aaa from "./components/aaa.vue" import aaa from "./components/aaa.vue";
import VueRouter from "vue-router" import VueRouter from "vue-router";
import index from "./pages/index.vue" import index from "./pages/index.vue";
import ElementUI from "element-ui"; import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css"; import "element-ui/lib/theme-chalk/index.css";
// vuerouter 插件 // vuerouter 插件
Vue.use(ElementUI); Vue.use(ElementUI);
Vue.use(VueRouter) Vue.use(VueRouter);
// 路径 => 页面(组件) // 路径 => 页面(组件)
const routes = [{ const routes = [
path:"/abc", {
component:HelloWorld path: "/abc",
},{ component: HelloWorld,
path:"/agfahg", meta: "u",
component:aaa },
}, { {
path:"/", path: "/agfahg",
component: index component: aaa,
}, { meta: "u",
path:"/login", },
component:() =>import("./components/luyou.vue"), {
children:[{ path: "/",
path:"user", component: index,
component: () => import("./pages/user.vue") meta: "m",
},{ },
path:"abc", {
component:HelloWorld path: "/login",
}] component: () => import("./components/luyou.vue"),
}] children: [
{
path: "user",
component: () => import("./pages/user.vue"),
beforeEnter: (to, from, next) => {
// ...
next();
console.log("路由独享守卫");
},
},
{
path: "abc",
component: HelloWorld,
},
],
},
];
const router = new VueRouter({ const router = new VueRouter({
routes // (缩写) 相当于 routes: routes mode: "history",
}) routes, // (缩写) 相当于 routes: routes
});
Vue.config.productionTip = false router.beforeEach((to, from, next) => {
//全局前置守卫
/* console.log(to); //到哪里去
console.log(from); //上个页面 从哪里来的 */
console.log("这是导航守卫");
if (to.path != "/login/user") {
console.log("执行next");
next(); //控制页面跳转
} else {
alert("不能打开");
}
});
router.beforeResolve((to, from, next) => {
// ...全局解析守卫
next();
});
router.afterEach(() => {
console.log("跳转完成");
// ...全局后置钩子
});
Vue.config.productionTip = true;
new Vue({ new Vue({
render: h => h(App), render: (h) => h(App),
router router,
}).$mount('#aaa') }).$mount("#aaa");