UNPKG
csk-ui
Version:
latest (0.0.1)
0.0.1
测试发包一个自定义的button
csk-ui
/
src
/
main.ts
11 lines
(8 loc)
•
199 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ createApp }
from
'vue'
import
'./style.css'
import
App
from
'./App.vue'
// 验证组件可用性
import
CsUI
from
'./components'
const
app =
createApp
(
App
) app.
use
(
CsUI
) app.
mount
(
'#app'
)