8 lines
212 B
TypeScript
Raw Normal View History

2022-10-18 15:07:42 +08:00
import { type App } from "vue"
import SvgIcon from "@/components/SvgIcon/index.vue" // Svg Component
import "virtual:svg-icons-register"
2022-04-21 17:14:30 +08:00
2022-10-18 14:32:40 +08:00
export function loadSvg(app: App) {
app.component("SvgIcon", SvgIcon)
2022-04-21 17:14:30 +08:00
}