<el-menu :default-active="element.active" :router="element.router" > <el-menu-item style="margin-left: 150px;" index="/index">首页</el-menu-item> <el-me ...
分类:
其他好文 时间:
2021-01-13 10:42:09
阅读次数:
0
Oracle教程导航 Microsoft SQL Server 教程 SQL Server 2014 各版本介绍 SQL Ssever 安装.NET3.5 框架 SQL Server 2014 安装说明 SQL Server 管理套件(SSMS) SQL Server 创建数据库 SQL Serve ...
分类:
数据库 时间:
2021-01-11 11:15:34
阅读次数:
0
41、 validation 确认 42、 alpha testing α测试 43、 beta testing β测试 44、 top-down testing 自顶向下测试 45、 bottom-up testing 自底向上测试 46、 isolation testing 孤立测试 47、 a ...
分类:
其他好文 时间:
2021-01-07 12:18:24
阅读次数:
0
相关API ① this.$router.push(path):相当于点击路由链接(可以返回到当前路由界面) 这个方法会向 history 栈添加一个新的记录,所以,当用户点击浏览器回退按钮时,则回到之前的 URL 当点击 <router-link> 时,这个方法会在内部调用,所以,点击 <rout ...
分类:
其他好文 时间:
2021-01-07 11:50:11
阅读次数:
0
两个页面之间的跳转如果需要传参(例如需要传递当前的id),js里写 window.location.href="xxxxx?id=xx 就可以了;但是vue不一样 需要操作的是路由,需要用到 VueRouter使用之前首先要了解 $router和$route $router是一个VueRouter的 ...
分类:
其他好文 时间:
2021-01-04 10:33:13
阅读次数:
0
Header搜索组件:选择性CV router/index.js 12345678910 import SearchCourse from '../views/SearchCourse.vue'const routes = [ // ... { path: '/course/search', nam ...
分类:
其他好文 时间:
2020-12-31 12:25:08
阅读次数:
0
marquee的基本语法:<marquee> ... </marquee> 参数:1、滚动方向 (direction):left(左)、right(右)、up(上)、down(下)。 例:<marquee direction="up">向上移动</marquee> 2、移动方式 ( behavior ...
分类:
其他好文 时间:
2020-12-30 11:18:09
阅读次数:
0
https://blog.csdn.net/Alexander_1314/article/details/96494558 Failed to start LSB: Bring up/down解决方法: https://blog.csdn.net/kawnj/article/details/8166 ...
分类:
Web程序 时间:
2020-12-30 11:16:45
阅读次数:
0
<el-menu class="left-menu" :default-active="$route.name" :unique-opened="true" :collapse="isCollapse"> <template v-for="(m, x) in menuOpts.data" > <el ...
分类:
其他好文 时间:
2020-12-28 10:57:57
阅读次数:
0
1.全局路由守卫 router.beforeEach((to, from, next) => { // ... }) 当一个导航触发时,全局前置守卫按照创建顺序调用。守卫是异步解析执行,此时导航在所有守卫 resolve 完之前一直处于 等待中。 每个守卫方法接收三个参数: to: Route: 即 ...
分类:
其他好文 时间:
2020-12-23 12:33:32
阅读次数:
0