error.vue 573 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="h-screen flex items-center justify-center flex-col">
  3. <img src="@/assets/icon-link-error.png" alt="" class="w-40">
  4. <div class="text-xl mt-4 text-gray-600">{{ msg}}</div>
  5. </div>
  6. </template>
  7. <script setup>
  8. import { ref, reactive, onMounted, computed, watch } from 'vue';
  9. import { useRoute, useRouter } from 'vue-router';
  10. import { request } from '@/utils';
  11. const [route, router] = [useRoute(), useRouter()];
  12. const msg = ref(route.query.msg || '未知错误');
  13. document.title = msg.value;
  14. </script>
  15. <style lang='scss' scoped>
  16. </style>