mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-18 17:46:38 +08:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import type { App } from 'vue';
|
|
import { SvgIcon } from '@/components';
|
|
|
|
/** 注册全局svg-icon组件 */
|
|
export default function setupNaiveUI(app: App) {
|
|
app.component('SvgIcon', SvgIcon);
|
|
}
|