click
- 類型:Boolean
- 默認值:false
- 作用:better-scroll 默認會阻止瀏覽器的原生 click 事件。當設置為 true,better-scroll 會派發一個 click 事件,我們會給派發的 event 參數加一個私有屬性
_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,點擊事件即可生效