19 lines
415 B
Vue
19 lines
415 B
Vue
<script setup lang="ts">
|
|
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'
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<QqazkShowSearch :words="route.query.words" :method="route.query.method" />
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |