Vue
程序员小哥哥
这个作者很懒,什么都没留下…
展开
-
Vue 移动端适配解决方案
Vue 移动端适配解决方案 1、动态设置 font-size 的 fontSize.js fontSize.js // 获取屏幕宽度 let htmlWidth = document.documentElement.clientWidth || document.body.clientWidth; // 获取html的dom元素 let htmlDom = document.getEl...原创 2018-07-05 22:31:26 · 4485 阅读 · 0 评论 -
Vue 中过滤器的使用和定义
Vue 中过滤器的使用和定义 过滤器的定义 1、全局过滤器的定义 mian.js 中进行定义 Vue.filter("moneyFilter", function(value, num, type) { //value是使用过滤器是的表达式或者值,num和tyep中的参数 return "¥" + value.toFixed(num) + type; }); 过滤...原创 2018-07-05 22:37:16 · 5045 阅读 · 0 评论