bunny-admin-element-thin-i18n/other-views/tabs/query-detail.vue

18 lines
356 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import { useDetail } from "./hooks";
defineOptions({
name: "TabQueryDetail"
});
const { initToDetail, getParameter } = useDetail();
initToDetail("query");
</script>
<template>
<div>
{{ getParameter.id }} - 详情页内容在此query传参
<p>当前页面参数为{{ getParameter }}</p>
</div>
</template>