You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
303 B

  1. <template>
  2. <v-card>
  3. <v-card-text class="title">
  4. <entity-item-box />
  5. </v-card-text>
  6. </v-card>
  7. </template>
  8. <script>
  9. import EntityItemBox from '~/components/containers/annotation/EntityItemBox'
  10. export default {
  11. layout: 'annotation',
  12. components: {
  13. EntityItemBox
  14. }
  15. }
  16. </script>