_constructed
,值为 true。async getRatings() { const res = await this.$axios.get(‘/api/ratings.json‘); if (res.data) { this.ratings = res.data || []; this.loading = false; this.$nextTick(() => { this.scroll = new BScroll(this.$refs.ratingsRef, { click: true }); }); } },
配置click为true,点击事件即可生效
Vue中引入了better-scroll后 页面上的点击事件不生效了
原文:https://www.cnblogs.com/hahahakc/p/13074127.html