安装
// 历史版本TypeScript中import会不兼容,所以需要使用新版本
npm install @better-scroll/core@next --save
使用示例
// HTML
<div id="topMenu" class="top_menu">
<div ref="topMenuRoot">
<div class="menu_item" v-for="(item, index) in 4" :key="index">{{ item }}</div>
</div>
</div>
// TS
<script lang="ts">
import { Vue } from "vue-property-decorator";
import BScroll from "@better-scroll/core";
export default class Home extends Vue {
_initScroll() {
// 水平滑动需要设置
(this.$refs.topMenuRoot as HTMLDivElement).style.width = `460px`;
this.$nextTick(() => {
new BScroll('#topMenu', {
startX: 0,
scrollX: true,
scrollY: false,
click: false
});
});
}
created() {
this.$nextTick(() => {
this._initScroll();
})
}
}
</script>
// Less
// 注意父容器的宽度必须设置
// 我这边设置的宽度是 100%
记录,祝好!
网友评论