24篇文章 · 16387字 · 1人关注
vuex 热更新
module 中的 state mapState 简写 module 中的 mutations 这里没有和 state 一样通过模块来调用,vu...
mutation 同步操作 基本使用 创建文件 创建 client/store/mutations/ 创建 client/store/state...
store 常规使用方式 直接在 new Vuex.store 选项中去写,不太好,常规方式是 创建文件 创建 client/store/sta...
安装 vuex npm i vuex -S 创建文件夹 创建 client/ store/ 创建 client/store/store.js 应...
导航守卫 全局导航守卫 全局钩子 beforeEach 进行数据校验,比如验证页面,用户需要登录后才能显示,设置跳转到 login 页面 路由配...
params 点击 app 链接,跳转 todo 页面 ,本地url 路径 localhost:8000/app/123 通过 $route 可...
new Router 配置项 mode hash / histoty 配置路由 history 模式 作为有服务端渲染的应用,不希望有 #,上述...
在项目中使用 vue-router 项目中新建文件 笔记所在项目 新建 client/config/ 新建 client/router.js 新...
文集作者