vuex刷新状态消失的解决办法
vuex做数据管理非常好,但是唯一美中不足的地方,就是当页面刷新的时候状态保存不下来,但是工作业务中,常常会遇到,可能需要把状态保留下来的情况那在这种情况下可以使用方案:在 app.vue中的created函数中写如下代码:localstorage和sessionStorage都可以//在页面加载时...
十个常用的自定义过滤器
//去除空格 type 1-所有空格 2-前后空格 3-前空格 4-后空格 function trim(value, trim) {  ...
vue-router 路由几种模式,分别什么用法
vue-router 默认 hash 模式 . http://music.163.com/#/friend还有一种是history模式。 http://music.163.com/friendhash模式背后的原理是onhashchange事件,...
vue-router 路由几种模式,分别什么用法
vue-router 默认 hash 模式 . http://music.163.com/#/friend还有一种是history模式。 http://music.163.com/friendhash模式背后的原理是onhashchange事件,...
vue-router 路由的配置
最好定义一个专门的路由配置文件来管理路由地址 接下来在点击的元素上开始设置路由path接收的 链接地址 例如以下...
vue class style写法
class,第一种就是把判断的变量放在后面,前面就是判断之后要设置的class名称v-bind:class="{ active: isActive, 'text-danger': hasError }">data: { isActive: tru...
vue做博客中的问题记录
1,全局变量,统一管理变量文件,路径如:../src/static/css/globle.scss<1>添加依赖 npm install sass-resources-loader --save-dev<2>在项目build文件夹里找到...