摘要: 局部过滤器(放在组件里) filters: { //局部过滤器 FormattingMoney:value=>{ return value==null? '0' : value/100 } }, 使用:{{money | FormattingMoney}} 全局过滤器(放main.js) Vue.filter("ellipsis", (str, ma... 阅读全文
posted @ 2019-01-11 08:39 conglvse 阅读(285) 评论(0) 推荐(0) 编辑
摘要: cnpm install --save-dev sass-loader //sass-loader依赖于node-sass cnpm install --save-dev node-sass //实现BEM的模式 .block { color: red; @at-root #{&}-green{ color: green; } //继承 .row { @extend ... 阅读全文
posted @ 2019-01-11 08:34 conglvse 阅读(643) 评论(0) 推荐(0) 编辑