UNPKG
@moohng/dui
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.4.0
1.3.0
1.2.0
1.1.1
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.1
基于 Vue 3 的轻量级组件库
github.com/moohng/dui
moohng/dui
@moohng/dui
/
src
/
components
/
icon-loading
/
index.ts
12 lines
(9 loc)
•
228 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Plugin
}
from
'vue'
import
IconLoading
from
'./icon-loading.vue'
export
const
plugin
:
Plugin
= {
install
:
(
app
) =>
{
// 注册组件
app.
component
(
IconLoading
.
name
,
IconLoading
) }, }
export
default
plugin