別的不多說,開始動爪把,
首先安裝vue-cli mac:sudo npm install -g @vue/cli
github:
github.com/XinYueXiao/…
1、Vue-cli基礎使用
1.1 建立測試專案 vue create vue-routes
1.2 建立成功,啟動專案 yarn serve
在http://localhost:8080/就可以看到歡迎?頁面了
1.3 搞點自定義配置,新建vue.config.js
const title = '雙11剁手啦'
const port = '1111'
module.exports = {
publicPath: '/wxy',
//自定義埠號
devServer: {
port
},
//自定義變數
configureWebpack: {
name: title
}
}複製程式碼
- 配置完成後重新啟動
yarn serve
效果圖
- 如何配置svg圖示
1)準備一個svg,例如:src/icons/svg/hg.svg
2)安裝loaderyarn add svg-sprite-loader
3)對config進行鏈式操作即可修改loader
const path = require('path')
//處理地址
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
...,
chainWebpack(config) {
//安裝loader,對config進行鏈式操作即可修改loader、plugins
//1.svg rule中要排除icons目錄
config.module.rule('svg')
//轉換為絕對地址
.exclude.add(resolve('src/icons'))
//檢視配置後svg規則 vue inspect --rule svg
//2.新增一個規則icons
config.module.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons')).end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
}
}複製程式碼
4)svg rule中要排除icons目錄後配置
5)新增一個規則icons配置
6)新建src/components/SvgIcon.vue
模板
<template>
<svg :class="svgClass" aria-hidden="true" v-on="$listeners">
<use :xlink:href="iconName" />
</svg>
</template>
<script>
export default {
name: "SvgIcon",
props: {
iconClass: {
type: String,
required: true
},
className: {
type: String,
default: ""
}
},
computed: {
iconName() {
return `#icon-${this.iconClass}`;
},
svgClass() {
if (this.className) {
return "svg-icon " + this.className;
} else {
return "svg-icon";
}
}
}
};
</script>
<style scoped>
.svg-icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
</style>
複製程式碼
7)新建src/icons/index.js
在main.js下引入icon
//src/icons/index.js
import Vue from 'vue'
import SvgIcon from '@/components/SvgIcon'
//圖示自動載入
const req = require.context('./svg', false, /\.svg$/)
req.keys().map(req)
Vue.component('svg-icon', SvgIcon)
//main.js
import "./icons";複製程式碼
8)在App.vue引入圖示
<svg-icon icon-class="hg"></svg-icon>複製程式碼
效果如下:
2、router路由守衛
何為守衛,即為阻止無身份者進入組織內部
安裝yarn add vue-router 控制路由
安裝yarn add vuex 儲存身份認證
2.1 路由配置
src/router/index.js
import Vue from "vue";
import Router from "vue-router";
import Layout from '@/layout'; // 佈局頁
Vue.use(Router);
// 通用頁面:不需要守衛,可直接訪問
export const constRoutes = [
{
path: "/login",
component: () => import("@/views/Login"),
hidden: true // 導航選單忽略該項
}, {
path: "/",
component: Layout,// 應用佈局
redirect: "/home",
children: [
{
path: "home",
component: () =>
import(/* webpackChunkName: "home" */ "@/views/Home.vue"),
name: "home",
meta: {
title: "Home", // 導航選單項標題
icon: "hg" // 導航選單項圖示
}
}]
}];
// 許可權頁面:受保護頁面,要求使用者登入並擁有訪問許可權的角色才能訪問
export const asyncRoutes = [
{
path: "/about",
component: Layout,
redirect: "/about/index",
children: [
{
path: "index",
component: () =>
import(/* webpackChunkName: "home" */ "@/views/About.vue"),
name: "about",
meta: {
title: "About",
icon: "hg",
roles: ['admin', 'editor']
},
}
]
}
];
export default new Router({
mode: "history",
base: process.env.BASE_URL,
routes: constRoutes
});
複製程式碼
佈局元件src/layout
<template>
<div class="app-wrapper">
<div class="main-container">
<router-view />
</div>
</div>
</template>
複製程式碼
路由展示src/App.vue
<template>
<div id="app">
<!-- 路由 -->
<div id="nav">
<router-link to="/">
<svg-icon icon-class="wx"></svg-icon>
<!-- <svg>
<use xlink:href="#icon-wx"></use>
</svg>-->
Home
</router-link>|
<router-link to="/about">
<svg-icon icon-class="hg"></svg-icon>About
</router-link>
</div>
<!-- 4.路由檢視 -->
<!-- 問題:router-link和router-view是哪來的 -->
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "app",
components: {}
};
</script>
<style>
#app {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>
複製程式碼
2.2 準備頁面
src/views/About.vue
<template>
<div class="about">
<h1>This is an about page</h1>
</div>
</template>
複製程式碼
src/views/Home.vue
<template>
<div class="home">
<img alt="Vue logo" src="../assets/logo.png" />
<HelloWorld msg="Welcome to Your Vue.js App" />
</div>
</template>
<script>
// @ is an alias to /src
import HelloWorld from "@/components/HelloWorld.vue";
export default {
name: "home",
components: {
HelloWorld
}
};
</script>
複製程式碼
src/views/Login.vue
<template>
<div>
<h2>使用者登入</h2>
<div>
<input type="text" v-model="username" />
<button @click="login">登入</button>
</div>
</div>
</template>
<script>
export default {
data() {
return {
username: "admin"
};
},
methods: {
login() {
this.$store
.dispatch("user/login", { username: this.username })
.then(() => {
this.$router.push({
path: this.$route.query.redirect || "/"
});
})
.catch(error => {
alert(error);
});
}
}
};
</script>
複製程式碼
2.3 身份認證
import router from "./router";
import store from "./store";
const whiteList = ["/home", "/login"]; // 無需令牌白名單
// 全域性路由守衛
router.beforeEach(async (to, from, next) => {
// 獲取令牌判斷使用者是否登入
const hasToken = localStorage.getItem("token");
// 已登入
if (hasToken) {
if (to.path === "/login") {
// 若已登入沒有必要顯示登入頁,重定向至首頁
next({ path: "/" });
} else {
// 去其他路由,暫時放過
// next()
// 接下來執行使用者角色邏輯, todo
// 1.判斷使用者是否擁有角色
const hasRoles =
store.state.user.roles && store.state.user.roles.length > 0;
if (hasRoles) {
next();
} else {
// 2.獲取使用者角色
const roles = await store.dispatch("user/getInfo");
const accessRoutes = await store.dispatch("permission/generateRoutes", roles);
// 動態新增路由到路由器
router.addRoutes(accessRoutes);
// 跳轉
next({ ...to });
}
}
} else {
// 未登入
if (whiteList.indexOf(to.path) !== -1) {
// 白名單中路由放過
next();
} else {
// 重定向至登入頁
next(`/login?redirect=${to.path}`);
}
}
});
複製程式碼
2.4 使用者資訊設定
import Vue from "vue";
import Vuex from "vuex";
import user from './modules/user'
import permission from './modules/permission'
Vue.use(Vuex);
export default new Vuex.Store({
modules: {
user, permission
}
});
複製程式碼
src/store/modules/user.js
const state = {
token: localStorage.getItem("token"),
// 其他使用者資訊
roles: []
};
const mutations = {
SET_TOKEN: (state, token) => {
state.token = token;
},
SET_ROLES: (state, roles) => {
state.roles = roles;
},
};
const actions = {
// 模擬使用者登入
login({ commit }, userInfo) {
const { username } = userInfo;
return new Promise((resolve, reject) => {
setTimeout(() => {
if (username === "admin" || username === "jerry") {
commit("SET_TOKEN", username);
localStorage.setItem("token", username);
resolve();
} else {
reject("使用者名稱、密碼錯誤");
}
}, 1000);
});
},
getInfo({ commit, state }) {
return new Promise((resolve) => {
setTimeout(() => {
const roles = state.token === 'admin' ? ['admin'] : ['editor']
commit('SET_ROLES', roles)
resolve(roles)
}, 1000);
})
}
};
export default {
namespaced: true,
state,
mutations,
actions,
};
複製程式碼
2.5 使用者路由許可權 src/store/modules/permission.js
// 匯入asyncRoutes,過濾它看當前使用者是否擁有響應許可權
import {asyncRoutes, constRoutes} from '@/router'
const state = {
routes: [], // 完整路由
addRoutes: [], // 許可權路由
}
const mutations = {
// routes: 使用者可訪問的許可權路由
SET_ROUTES: (state, routes) => {
state.addRoutes = routes;
state.routes = constRoutes.concat(routes);
}
}
const actions = {
generateRoutes({commit}, roles) {
// 過濾出能訪問的路由表
const routes = filterAsyncRoutes(asyncRoutes, roles)
commit('SET_ROUTES', routes)
return routes;
}
}
function filterAsyncRoutes(routes, roles) {
const res = [];
routes.forEach(route => {
// 複製一份路由
const tmp = {...route};
// 擁有訪問許可權
if (hasPermission(roles, tmp)) {
if (tmp.children) {
// 遞迴子路由
tmp.children = filterAsyncRoutes(tmp.children, roles)
}
res.push(tmp);
}
})
return res;
}
function hasPermission(roles, route) {
if (route.meta && route.meta.roles) {
return roles.some(role => route.meta.roles.includes(role))
} else {
// 路由定義中沒有roles選項,則不需要許可權即可訪問
return true;
}
}
export default {
namespaced: true,
state,
mutations,
actions
}
複製程式碼