index.vue 225 B

123456789
  1. <template>
  2. <Tagging v-for="tagging in taggings" :key="tagging.id" :tagging="tagging" />
  3. </template>
  4. <script lang="ts" setup>
  5. import Tagging from '@/components/tagging/list.vue'
  6. import { taggings } from '@/store'
  7. </script>