vue
帅呈程序缘
一个与程序有缘的人
展开
-
vue debug
vue debug要在需要debug的js代码位置的上一行写入 debugger这样在执行.vue文件时会自动debug到该行代码除此之外还可以使用火狐浏览器的开发者插件vue-devtools原创 2017-11-07 10:30:55 · 9122 阅读 · 0 评论 -
vue mounted 内找不到dom
vue生命周期 mounted () { },如果生命周期还是不好用,在语句外套用this.$nextTick方法this.$nextTick(function () { this.x= document.getElementsByClassName('x')[0]})原创 2018-11-02 15:18:53 · 5924 阅读 · 0 评论 -
vue 监听滚动条
mounted () { this.x= document.getElementsByClassName('x')[0] //获得dom对象x this.x.addEventListener('scroll', this.handleScrol1) //委托监听事件,handleScrol1为你要调用的方法 }, methods: { ha...原创 2018-11-02 15:22:36 · 1668 阅读 · 0 评论