DataFront/pages/tools/qqazk/index.vue
2023-08-27 18:43:47 +08:00

21 lines
503 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;align-items: center">
<el-text style="font-size: 50px;padding-bottom: 25px">笔顺码字典</el-text>
<QqazkSearchBox></QqazkSearchBox>
</div>
</template>
<style scoped>
</style>