Files
jinshen-website/app/pages/[...all].vue
R2m1liA 300266d32c
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m56s
refactor: 将各个界面的notfound提示提取为单独的组件NotFoundResult
2025-10-28 16:32:00 +08:00

11 lines
292 B
Vue

<template>
<main p="x4 y10" text="center teal-700 dark:gray-200">
<not-found-result
:title="$t('page-not-found')"
:sub-title="$t('page-not-found-desc')"
:back-text="$t('back-to-home')"
:on-back="() => $router.push($localePath('/'))"
/>
</main>
</template>