UNPKG
@icsmui/icsmui
Version:
latest (0.0.1-alpha.6)
0.0.1-alpha.6
0.0.1-alpha.5
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
京东风格的轻量级移动端 Vue2、Vue3 组件库(支持小程序开发)
nutui.jd.com
jdf2e/nutui
@icsmui/icsmui
/
dist
/
packages
/
with-install-DWwOiZS3.js
14 lines
(13 loc)
•
267 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
withInstall
= (
comp
) => {
const
_comp = comp; _comp.
install
=
(
vue
) =>
{
if
(_comp.
name
) {
const
name = _comp.
name
.
replace
(
"Nut"
,
"Ics"
); vue.
component
(name || _comp.
name
, _comp); } };
return
_comp; };
export
{ withInstall
as
w };