通知短信+运营短信,5秒速达,支持群发助手一键发送🚀高效触达和通知客户 广告
[TOC] > [demo](https://alvarotrigo.com/vue-fullpage/#page3) ## 安装 ``` npm i vue-fullpage ``` ### demo ``` import Vue from 'vue' import VueFullPage from 'vue-fullpage' Vue.use(VueFullPage); new Vue({ el: '#app', render: h => h(App) }); ``` ``` <template> <div> <full-page> <div class="section"> <button @click="$refs.fullpage.api.moveSectionDown()"> Next </button> Section 1 </div> <div class="section"> <button @click="$refs.fullpage.api.moveSectionUp()"> Prev </button> Section 2 </div> </full-page> </div> </template> ```