UNPKG
bd-admin
Version:
latest (1.0.12)
1.0.12
1.0.10
1.0.0
一款能根据需求快速配置vue后台管理的脚手架
github.com/lhpCode/bd-admin
lhpCode/bd-admin
bd-admin
/
commands
/
create
/
project_template_ts
/
src
/
components
/
svgIcon
/
icon.ts
6 lines
(5 loc)
•
169 B
text/typescript
View Raw
1
2
3
4
5
6
import
SvgIcon
from
"@/components/svgIcon/index.vue"
;
import
{
type
App
}
from
"vue"
;
export
const
signSvgIcon
= (
vue
:
App
) => { vue.
component
(
"SvgIcon"
,
SvgIcon
); };