feat: 完成移动端前段框架搭建

This commit is contained in:
RockYang
2023-06-24 11:45:26 +08:00
parent fcf2387794
commit 3c8b5cb313
7 changed files with 335 additions and 105 deletions

View File

@@ -0,0 +1,15 @@
<template>
<div>
<van-nav-bar :title="title"/>
</div>
</template>
<script setup>
import {ref} from "vue";
const title = ref('用户设置')
</script>
<style scoped>
</style>