DataFront/pages/tools/qqazk/index.vue

21 lines
483 B
Vue

<script setup lang="ts">
import QqazkSearchBox from "~/components/tools/qqazk/QqazkSearchBox.vue";
interface Ret{
data:any
message:string
haveMess:boolean
}
const api = await $fetch('/api/tools/qqazk/search')
</script>
<template>
<div style="display: flex;justify-content: center;flex-direction: column">
<el-text style="font-size: 50px;padding-bottom: 25px">笔顺码字典</el-text>
<QqazkSearchBox></QqazkSearchBox>
</div>
</template>
<style scoped>
</style>