elk/components/common/CommonNotFound.vue
Alex 09f80f291b
feat(i18n): improve translations (#219)
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
Co-authored-by: 沈青川 <46062972+ShenQingchuan@users.noreply.github.com>
2022-11-29 18:55:28 +08:00

9 lines
189 B
Vue

<template>
<div flex="~ col" items-center>
<div i-ri:forbid-line text-10 mt10 mb2 />
<div text-lg>
<slot>{{ $t('common.not_found') }}</slot>
</div>
</div>
</template>