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