- <template>
- <TaggingSign :tagging="data" :edit="false" @select="flyTagging(data)" search />
- </template>
- <script lang="ts" setup>
- import { flyTagging } from "@/hook/use-fly";
- import { Tagging } from "@/store";
- import TaggingSign from "@/views/tagging/hot/sign.vue";
- defineProps<{ data: Tagging }>();
- </script>
|