摘要:
转载: 前面我们已经了解了可以通过localStorage在客户端(浏览器)保存数据。 回顾token框架中的RESTful api快速领悟(中):token认证 (https://blog.csdn.net/github_26672553/article/details/54572534)框架中的 阅读全文
摘要:
VueRouter: html中: 路由钩子主要是给使用者在路由发生变化时进行一些特殊的处理而定义的函数。 vue里面提供了三大类钩子,两种函数1、全局钩子 router.beforeEach((to, from, next) => {} to:router即将进入的路由对象 from:当前导航即将 阅读全文
摘要:
1.vue.js里的vm: 实例名称~vm ~他是new出来的, 官方api用的vm,只是一个实例 2.vm.$el解读: var vm = new Vue({ el: '#app', router, template: '<App/>', components: {App} }); console 阅读全文