UNPKG
mt-ui-components-vue3
Version:
latest (1.0.0)
1.0.0
玛果添实UI组件库(Vue3)
mt-ui-components-vue3
/
es
/
util
/
type.js
9 lines
•
194 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
var
withInstall =
function
withInstall
(
comp, name
) {
var
c = comp; c.
install
=
function
(
app
) {
// @ts-ignore
app.
component
(name, comp);
return
app; };
return
comp; };