摘要:
今天学了一会vue 改善绩效考核系统 阅读全文
摘要:
今天早上考完了大数据的考试 整个考试过程 八个字:一言难尽 奋笔疾书 下午学了一会vue 对软件构造的项目进行改善 阅读全文
摘要:
import request from '@/utils/request' // 登录接口 export function login(data) { return request({ url: '/vue-element-admin/user/login', method: 'post', dat 阅读全文
摘要:
import { asyncRoutes, constantRoutes } from '@/router' /** * Use meta.role to determine if the current user has permission * @param roles * @param rou 阅读全文
摘要:
// 引入路由 import router from './router' // 引入仓库 import store from './store' // 引入ElementUI中的提示组件 message import { Message } from 'element-ui' // 引入nprog 阅读全文
摘要:
// 引入vue import Vue from 'vue' // 引入vue-router import Router from 'vue-router' // 路由就是一个插件 需要use Vue.use(Router) // 引入layout组件 很重要 // 一级路由出口 匹配layout组 阅读全文
摘要:
// 引入vue import Vue from 'vue' // 映入js-cookie // 是用来操作cookie 后端返回的token就存储在cookie中 import Cookies from 'js-cookie' // 引入重置样式 import 'normalize.css/nor 阅读全文