403.vue 524 B

12345678910111213141516171819
  1. <template>
  2. <div class="not-container">
  3. <img src="@/assets/images/403.png" class="not-img" alt="403" />
  4. <div class="not-detail">
  5. <h2>403</h2>
  6. <h4>抱歉,您无权访问该页面~🙅‍♂️🙅‍♀️</h4>
  7. <el-button type="primary" @click="router.back"> 返回上一页 </el-button>
  8. </div>
  9. </div>
  10. </template>
  11. <script setup lang="ts" name="403">
  12. import { useRouter } from "vue-router";
  13. const router = useRouter();
  14. </script>
  15. <style scoped lang="scss">
  16. @import "./index.scss";
  17. </style>