vant搭建

This commit is contained in:
橙子
2022-10-05 23:54:53 +08:00
parent db1f241c33
commit 70649653fb
26 changed files with 1497 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
<template >
<van-tabs v-model:active="active" offset-top="0" :sticky="true" class="tabs">
<van-tab title="关注" to="/follow"></van-tab>
<van-tab title="推荐" to="/recommend"></van-tab>
<van-tab title="广场"></van-tab>
<van-tab title="视频"></van-tab>
<router-view />
</van-tabs>
</template>
<script setup lang="ts">
import { ref } from "vue";
const active = ref(1);
</script>
<style scoped>
.tabs{
width: 25rem;
}
.view{
margin: auto;
}
</style>