添加SVG图标组件,替换emoji图标为矢量图标
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Agent
2026-03-26 13:47:50 +00:00
parent 3dfba3d804
commit 02c4b02092
4 changed files with 156 additions and 36 deletions

View File

@@ -1,8 +1,10 @@
import { createSSRApp } from 'vue'
import App from './App.vue'
import Icon from './components/Icon.vue'
export function createApp() {
const app = createSSRApp(App)
app.component('Icon', Icon)
return {
app
}