
vue
boyzzy1995
这个作者很懒,什么都没留下…
展开
-
Vue.set和vm.$set源码解析
为什么要使用这两个API我们知道在Vue中,对象和数组在某些情况下无法触发响应式数据更新。比如:const vm = new Vue({ el: '#root', data: { price: 10, },});vm.price = 20; // 重新渲染视图vm.discount = 10; // 并不是响应式的数据或者另一种情况,直接通过数组的下标修改数组的某...原创 2020-04-28 18:27:29 · 1157 阅读 · 0 评论 -
使用npm启动vue报错'webpack-dev-server' is not recognized as an internal or external command'
windows下npm install webpack-dev-server原创 2019-02-24 17:15:37 · 28578 阅读 · 1 评论 -
在Nuxt中使用vue-awesome-swiper报错:window is not defined
我是在swiper-3.1.3的环境中使用的,按照教程配置了教程之后还是报错。仔细对照了一下github上的教程,原来我在vue的script标签中直接import 了swiper这样做导致了报错。正确的做法是:<div class="clearfix" v-swiper:mySwiper="swiperOptions"> <div class="swipe...原创 2019-07-16 20:24:18 · 3115 阅读 · 0 评论