element-ui-saas-extend
Version:
基于 Element UI 对 SaaS 平台常见交互开发的预设组件
14 lines (11 loc) • 375 B
text/typescript
import TablePage from "./TablePage.vue";
// @ts-ignore
TablePage.install = (Vue: VueConstructor, options: any = {}) => {
Vue.prototype.$ELEMENT = Object.assign({}, Vue.prototype.$ELEMENT, options);
Vue.component("ElTablePage", TablePage);
};
if (typeof window !== "undefined" && window.Vue) {
// @ts-ignore
TablePage.install(window.Vue);
}
export default TablePage;