mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-10 10:10:58 +08:00
21 lines
426 B
Vue
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>
|