esign-disable-prompt
Version:
向对方拉入黑名单,不可用发起、填写、签署、审批等提示弹框
15 lines (14 loc) • 360 B
JavaScript
import esignDisablePrompt from "./packages/esignDisablePrompt/index.js";
const Sublist=[esignDisablePrompt];
const install=function(Vue,ops={}){
Sublist.forEach(component => {
Vue.component(component.name, component);
});
}
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
export default {
install,
esignDisablePrompt,
}