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.

23 lines
404 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. validate({ params, query }) {
  16. return /^\d+$/.test(params.id) && /^\d+$/.test(query.page)
  17. }
  18. }
  19. </script>