-
Vue项目新打包文件放在服务器后,客户端自动更新问题
每次测试构建或者打包更新版本发到服务器上,导致偶尔会出现不能及时更新到最新代码的问题。一、在vue.config.js中配置output,打包后的文件会带时间戳constTimestamp=newDate().getTime();module.exports={//每次构建打包时给文件名加上时间戳,确保每次版本更新的文件名不一样configureWebpack:{output:{filename:… -
vue中 使用md5加密
vue中使用md5加密 -
elementui dropdown实现二级菜单
elementuidropdown实现二级菜单 -
error: Strings must use singlequote等相关问题
error:Unexpectedconsolestatement(no-console)at -
VUE 生成二维码
vue有两种生成二维码的方式,qrcode、vue-qr(可插入icon); -
Vue-grid-layout实现web拖拽布局功能
npm安装npminstallvue-grid-layout--save使用demo{{item.i}}layout:[{"x":0,"y":0,"w":2,"h":2,"i":"0"},{"x":2,"y":0,"w":2,"h":4,"i":"1"},{"x":4,"y":0,"w":2,"h":5,"i":"2"},{"x":6,"y":0,"w":2,"h":3,"i":"3"},],参数… -
elementUI 预览大图关闭按钮问题
ElementUI中的图片有预览大图的功能,但是只能点击右上角的关闭图标才能关闭,感觉很不方便,而且如果大屏还很难注意到这个按钮method:{//关闭el-image遮罩层handleClickItem(){this.$nextTick(()=>{//获取遮罩层domletdomImageMask=document.querySelector('.el-image-viewer__mask')i… -
vue项目打包后报错:exports is not defined
修改项目目录中的babel.config.jsmodule.exports={presets:[["@vue/app",{useBuiltIns:"entry"}]]}