Files
MoviePilot-Frontend/src/pages/[...all].vue
2023-07-02 22:17:54 +08:00

21 lines
426 B
Vue

<script setup lang="ts">
import NoDataFound from '@/components/NoDataFound.vue';
</script>
<template>
<NoDataFound
errorCode="404"
errorTitle="页面不存在 ⚠️"
errorDescription="您想要访问的页面不存在,请检查地址是否正确。"
>
<template #button>
<VBtn
to="/"
class="mt-10"
>
返回
</VBtn>
</template>
</NoDataFound>
</template>