jwg-ui
Version:
常用组件封装+基于element-ui进行二次封装的组件库
19 lines (15 loc) • 399 B
JavaScript
import JwgButton from "./components/JwgButton/index.vue";
import JwgTest from "./components/JwgTest/index.vue";
const install = function (Vue) {
Vue.component("jwg-test", JwgTest);
Vue.component("jwg-button", JwgButton);
};
/* istanbul ignore if */
if (typeof window !== "undefined" && window.Vue) {
install(window.Vue);
}
export default {
install,
JwgTest,
JwgButton,
};