403.vue 151 B

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