acomplish replacing Vue-cli with Vite

This commit is contained in:
GeekMaster
2025-05-26 15:56:18 +08:00
parent b1ddcef593
commit 76a3ada85f
44 changed files with 2811 additions and 9576 deletions

View File

@@ -1,37 +1,36 @@
<template>
<van-config-provider :theme="theme">
<div class="mobile-home">
<router-view/>
<router-view />
<van-tabbar route v-model="active">
<van-tabbar-item to="/mobile/index" name="home" icon="home-o">首页</van-tabbar-item>
<van-tabbar-item to="/mobile/chat" name="chat" icon="chat-o">对话</van-tabbar-item>
<van-tabbar-item to="/mobile/image" name="image" icon="photo-o">绘图</van-tabbar-item>
<van-tabbar-item to="/mobile/profile" name="profile" icon="user-o">我的
</van-tabbar-item>
<van-tabbar-item to="/mobile/profile" name="profile" icon="user-o">我的 </van-tabbar-item>
</van-tabbar>
</div>
</van-config-provider>
</template>
<script setup>
import {ref, watch} from "vue";
import {useSharedStore} from "@/store/sharedata";
import { useSharedStore } from '@/store/sharedata'
import { ref, watch } from 'vue'
const active = ref('home')
const store = useSharedStore()
const theme = ref(store.theme)
watch(() => store.theme, (val) => {
theme.value = val
})
watch(
() => store.theme,
(val) => {
theme.value = val
}
)
</script>
<style lang="stylus">
@import '@/assets/iconfont/iconfont.css';
@import '../../assets/iconfont/iconfont.css';
.mobile-home {
.container {
.van-nav-bar {
@@ -53,4 +52,4 @@ watch(() => store.theme, (val) => {
position fixed
width 100%
}
</style>
</style>