加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.vue 585 Bytes
一键复制 编辑 原始数据 按行查看 历史
Maybe 提交于 2022-02-21 14:19 . 更新: 更新文档示例
<template>
<div>
<!-- <NuxtWelcome /> -->
<client-only>
<mv-full-page :pages="pages" v-model:page="page" :config="config">
<template #page1>1</template>
<template #page2>2</template>
</mv-full-page>
</client-only>
</div>
</template>
<script setup lang="ts">
import { Config } from 'mv-full-page'
const pages = ref(2)
const page = ref(1)
const config = ref({
direction: 'v'
} as Config)
</script>
<style scoped>
/* @import url("../node_modules/mv-full-page/dist-lib/style.css"); */
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化