添加插件快速访问功能,支持下拉手势触发

This commit is contained in:
jxxghp
2025-07-02 14:18:58 +08:00
parent b48c26ee73
commit b8dff560f0
10 changed files with 993 additions and 16 deletions

View File

@@ -7,11 +7,13 @@ const { t } = useI18n()
</script>
<template>
<NoDataFound error-code="404" :error-title="t('notFound.title')" :error-description="t('notFound.description')">
<template #button>
<VBtn to="/" class="mt-10" prepend-icon="mdi-home">
{{ t('notFound.backButton') }}
</VBtn>
</template>
</NoDataFound>
<div class="pt-10">
<NoDataFound error-code="404" :error-title="t('notFound.title')" :error-description="t('notFound.description')">
<template #button>
<VBtn to="/" class="mt-10" prepend-icon="mdi-home">
{{ t('notFound.backButton') }}
</VBtn>
</template>
</NoDataFound>
</div>
</template>