在vue中使用swiper和vue-awesome-swiper
程序员文章站
2022-07-04 21:27:06
...
在vue中使用swiper和vue-awesome-swiper
swiper/dist/css/swiper.css not found
不知道你是否正在被上面这个狗东西所困扰
解决方案:
方案一:由于swiper6版本在nodemodel中没有对应的css文件
可在配置vue-awesome-swiper的时候把
import 'swiper/dist/css/swiper.css’改为↓
import ‘swiper/swiper-bundle.css’
import Vue from 'vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
// import 'swiper/dist/css/swiper.css'
import 'swiper/swiper-bundle.css'
Vue.use(VueAwesomeSwiper)
方案二:如果上面的方法未解决问题的话,也可将版本更换为旧版本
npm uninstall swiper
npm uninstall vue-awesome-swiper
npm install [email protected] --save-dev
npm install vue-awesome-[email protected] --save-dev
推荐阅读
-
在vue中如何使用cropperjs的方法(详细教程)
-
在ASP.NET 2.0中操作数据之十:使用 GridView和DetailView实现的主/从报表
-
java 在Jetty9中使用HttpSessionListener和Filter
-
在ASP.NET 2.0中操作数据之三十五:使用Repeater和DataList单页面实现主/从报表
-
在ASP.NET 2.0中操作数据之三十三:基于DataList和Repeater使用DropDownList过滤的主/从报表
-
深入解析Vue.js中v-bind v-model的使用和区别
-
在Python中定义和使用抽象类的方法
-
在ASP.NET 2.0中操作数据之十:使用 GridView和DetailView实现的主/从报表
-
深入解析Vue.js中v-bind v-model的使用和区别
-
在ASP.NET 2.0中操作数据之三十三:基于DataList和Repeater使用DropDownList过滤的主/从报表