多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
369 B

<script lang="ts" setup>
definePageMeta({
requiresAuth: false,
public: true,
})
</script>
<template>
<div class="bg-primary bg-opacity-5 w-full h-full flex flex-col justify-center items-center text-4xl gap-12">
<div class="text-gray-400 flex gap-4 items-center">
<component :is="iconMap.warning" />
Page Not Found
</div>
</div>
</template>