403.vue 135 B

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