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