From 636912941a9311dfc9c6a732f1564f10140e8f4c Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 23 Oct 2025 17:56:45 +0800 Subject: [PATCH] fix: commit --- frontend_nuxt/pages/index.vue | 1 + frontend_nuxt/plugins/iconpark.client.ts | 2 ++ 2 files changed, 3 insertions(+) diff --git a/frontend_nuxt/pages/index.vue b/frontend_nuxt/pages/index.vue index 78a7160a7..74e3c994b 100644 --- a/frontend_nuxt/pages/index.vue +++ b/frontend_nuxt/pages/index.vue @@ -70,6 +70,7 @@ {{ article.title }} +
diff --git a/frontend_nuxt/plugins/iconpark.client.ts b/frontend_nuxt/plugins/iconpark.client.ts index ee11c64f5..3899b1f8b 100644 --- a/frontend_nuxt/plugins/iconpark.client.ts +++ b/frontend_nuxt/plugins/iconpark.client.ts @@ -82,6 +82,7 @@ import { Share, Financing, Hands, + PreviewCloseOne, } from '@icon-park/vue-next' export default defineNuxtPlugin((nuxtApp) => { @@ -167,4 +168,5 @@ export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.component('Share', Share) nuxtApp.vueApp.component('Financing', Financing) nuxtApp.vueApp.component('Hands', Hands) + nuxtApp.vueApp.component('PreviewCloseOne', PreviewCloseOne) })