/*eslint no-unused-vars: ["error", { "args": "none" }]*/ router.afterEach((to, form) => { Auth.isLogin = true }) 方便参考: http://www.verydoc.net/eslint/0 ...
分类:
其他好文 时间:
2020-05-10 01:44:59
阅读次数:
1274
const routes = [ { path: "/", component: BasicLayout, children: [ { path: "", name: "analysis", component: Analysis }, { path: "userform", name: "user ...
分类:
其他好文 时间:
2020-05-09 23:36:49
阅读次数:
69
import Vue from "vue"; import router from "./router"; import ElementUI from "element-ui" import 'element-ui/lib/theme-chalk/index.css'; import App fro ...
分类:
其他好文 时间:
2020-05-09 21:19:04
阅读次数:
118
1. rsync服务端开启的iptables防火墙 【客户端的错误】 No route to host 【错误演示过程】 [root@nfs01 tmp]# rsync -avz /etc/hosts rsync_backup@172.16.1.41::backup rsync: failed to ...
分类:
其他好文 时间:
2020-05-09 14:17:08
阅读次数:
91
vue-i18n 1.介绍:满足不同语言的切换,切换成中文,或者切换成英文,实现多语言切换功能 // 安装 npm install vue-i18n --save // 在src新建目录lang,lang目录新建三个文件 zh.js 和 en.js 和 index.js // zh.js文件中 mo ...
分类:
编程语言 时间:
2020-05-08 19:56:41
阅读次数:
85
https://blog.csdn.net/crazywoniu/article/details/80942642 Vue 路由传递参数与 Vue传递参数不同 vue-router传递参数分为两大类 编程式的导航 router.push声明式的导航 <router-link>编程式的导航 route ...
分类:
其他好文 时间:
2020-05-08 12:58:09
阅读次数:
58
@app.route(404) def err_404_page(err): # 必须有个参数接收错误信息 1. 使用用元组,字典 响应体 状态码 响应头 return 'index page', 200, [('Itcast1','python'),('city','sz')] return 'i... ...
分类:
其他好文 时间:
2020-05-08 12:50:34
阅读次数:
174
官房文档里是这样说明的: 通过注入路由器,我们可以在任何组件内通过 this.$router 访问路由器,也可以通过 this.$route 访问当前路由 可以理解为: this.$router 相当于一个全局的路由器对象,包含了很多属性和对象(比如 history 对象),任何页面都可以调用其 p ...
分类:
其他好文 时间:
2020-05-07 19:50:32
阅读次数:
81
Route::group(['prefix'=>'admin'],function(){ Route::get('/',function(){ return view('admin.article.index'); }); Route::get('sort',function(){ return v ...
分类:
其他好文 时间:
2020-05-07 13:36:33
阅读次数:
103
首先,在路由页面,引入了一个组件。RouteDemo <BrowserRouter> {/* 没通过 <Route /> 匹配路由的 默认拿不到history的*/} <RouteDemo /> <Switch> <Route path='/table' component={TableDemo}/ ...
分类:
其他好文 时间:
2020-05-05 12:48:39
阅读次数:
160