feat: 首页调整

This commit is contained in:
2026-04-27 14:40:45 +08:00
parent 058c9c0e77
commit b41ca9c4a2
2 changed files with 11 additions and 31 deletions

View File

@@ -1,14 +1,11 @@
<template>
<AiTabSwitch v-model="tabIndex" :list="['探索发现', 'AI伴游']" @change="handleChange" />
<view> 探索发现
</view>
</template>
<script setup>
import { ref } from "vue";
import AiTabSwitch from "@/components/AiTabSwitch/index.vue";
const tabIndex = ref(0);
const handleChange = (i) => {
console.log("切换:", i);
};
</script>