Files
MoviePilot-Frontend/src/pages/[...all].vue
2023-07-22 16:09:07 +08:00

21 lines
428 B
Vue
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>