DataFront/pages/tools/qqazk/search.vue

19 lines
415 B
Vue
Raw Normal View History

2023-08-27 07:09:25 +00:00
<script setup lang="ts">
2023-08-27 16:30:58 +00:00
import {useRoute} from "vue-router";
import QqazkShowSearch from "~/components/tools/qqazk/QqazkShowSearch.vue";
const route = useRoute()
if (route.query.words==null||route.query.method==null){
route.query.words='错误'
route.query.method= 'hz'
}
2023-08-27 07:09:25 +00:00
</script>
<template>
2023-08-27 16:30:58 +00:00
<QqazkShowSearch :words="route.query.words" :method="route.query.method" />
2023-08-27 07:09:25 +00:00
</template>
<style scoped>
</style>