关于前端:记遇到的bug

35次阅读

共计 359 个字符,预计需要花费 1 分钟才能阅读完成。

git reset HEAD 的时候报错

warning: LF will be replaced by CRLF in h.txt.
The file will have its original line endings in your working directory.

解决:运行命令

git commit --allow-empty -n -m "Initial commit"

应该是因为 git 版本的问题

swiper 滑动异样的问题

解决办法: 加上这两个属性

<swiper :options="swiperOption" class="swiper-box" ref="mySwiper">

data(){
return {
    swiperOption:{
    observer:true,// 批改 swiper 本人或子元素时,主动初始 swiper
    observeParents:true
}
}
}

正文完
 0