AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[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> ```