记遇到的bug

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滑动异常的问题

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



data(){
return {
    swiperOption:{
    observer:true,//修改swiper自己或子元素时,自动初始swiper
    observeParents:true
}
}
}

你可能感兴趣的:(前端)