[BUGFix]
All checks were successful
Node.js CI / build-and-test (push) Successful in 35s

修复书签删除问题

[Feature]
使用表单保证 HTML 语义化
更新关于页面
This commit is contained in:
2025-05-14 17:48:11 +08:00
parent a59ebeb487
commit 89538823fc
5 changed files with 33 additions and 14 deletions

View File

@ -5,6 +5,7 @@ import App from './App.vue'
import ClientOnly from './ssr/ClientOnly.vue'
import Hr from './ui/BetterHr.vue'
import Form from './ui/Form.vue'
export function createApp() {
const app = createSSRApp(App)
@ -13,5 +14,6 @@ export function createApp() {
app
.component('ClientOnly', ClientOnly)
.component('Hr', Hr)
.component('Form', Form)
return { app, pinia }
}