403.vue 172 B

12345678
  1. <template>
  2. <Error type="403" @error-click="push('/')" />
  3. </template>
  4. <script lang="ts" setup>
  5. defineOptions({ name: 'Error403' })
  6. const { push } = useRouter()
  7. </script>