分类:vue

vue开发笔记

vue cli3 打包开启Gzip

vue cli3 打包开启Gzip
npm i compression-webpack-plugin@5.0.1 -D 修改 vue.config.js const CompressionWebpackPlugin = require("compression-webpack-plugin")...

4年前 (2021-01-23) 喜欢

vue filters过滤器传多个参数

vue filters过滤器传多个参数
传一个参数 //html {{aa | filterAa}} //js filters:{ filterAa(aa){ // 这额aa就是过滤器传入的参数 } } 传2个参数 //html {{aa | filterAa(bb)}} //js filters:{...

4年前 (2021-01-11) 喜欢

vue监听页面大小变化

vue监听页面大小变化
vue监听页面大小变化 mounted: function () { window.addEventListener('resize', this.getHeight) }, beforeRouteLeave(to, from, next) { ...

4年前 (2020-12-30) 喜欢

vue实现div可拖动

vue实现div可拖动
div部分 <div class="anbaoxinxi" id="drift" @mousedown="mousedown"> 拖动内容 </div> js部分 mou...

4年前 (2020-12-30) 喜欢