
vue
文章平均质量分 72
is宾
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ElementUI框架初始化弹空框问题
//Vue.use(Message)//错误Vue.component(EMessage.name, Message)//正确原创 2020-10-21 20:26:16 · 247 阅读 · 0 评论 -
Vue项目axios自动跳转https请求
在index.html的head标签里面加入以下代码:<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">原创 2020-06-05 17:39:59 · 5468 阅读 · 0 评论 -
Vue中对v-html指令中图片的操作
控制渲染图片的大小<div class="content" v-html="form.content"></div><style> .content>>>img{ width: 100%; }</style>获取渲染图片的地址<div @click="getImg($event)"&...原创 2020-05-08 09:29:37 · 2225 阅读 · 1 评论 -
优化Vue项目,减小打包体积
我们在打包Vue项目时经常会遇到打包出来的项目特别大,放在服务器上加载首页特别慢,如图:下面我来介绍几种我常用的减少项目大小的方式:一.去除.map.js文件在vue.config.js配置文件中module.exports = { productionSourceMap:false}二.使用router懒加载使用以下方式把不同路由对应的组件分割成不同的代码块,然后当路由...原创 2020-05-07 15:02:35 · 2258 阅读 · 0 评论