简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
在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...
使用npm启动vue报错'webpack-dev-server' is not recognized as an internal or external command'
windows下npm install webpack-dev-server
Vue.set和vm.$set源码解析
为什么要使用这两个API我们知道在Vue中,对象和数组在某些情况下无法触发响应式数据更新。比如:const vm = new Vue({el: '#root',data: {price: 10,},});vm.price = 20; // 重新渲染视图vm.discount = 10; // 并不是响应式的数据或者另一种情况,直接通过数组的下标修改数组的某...
到底了