feat: 搭建快捷提问组件与一些样式调整

This commit is contained in:
2026-04-27 16:31:56 +08:00
parent 722dec025e
commit 2c9377c019
8 changed files with 105 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
<template>
<view>
<FindTabs v-model="activeIndex" @change="handleTabChange" />
<QuickQuestions />
</view>
@@ -10,6 +11,7 @@
<script setup>
import { ref } from "vue";
import FindTabs from "./components/FindTabs/index.vue";
import QuickQuestions from "./components/QuickQuestions/index.vue";
const activeIndex = ref(0);