mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-13 17:31:23 +08:00
21 lines
428 B
Vue
21 lines
428 B
Vue
<script setup lang="ts">
|
||
import NoDataFound from '@/components/NoDataFound.vue'
|
||
</script>
|
||
|
||
<template>
|
||
<NoDataFound
|
||
error-code="404"
|
||
error-title="页面不存在 ⚠️"
|
||
error-description="您想要访问的页面不存在,请检查地址是否正确。"
|
||
>
|
||
<template #button>
|
||
<VBtn
|
||
to="/"
|
||
class="mt-10"
|
||
>
|
||
返回
|
||
</VBtn>
|
||
</template>
|
||
</NoDataFound>
|
||
</template>
|