UNPKG

cloud-admin-lite

Version:
17 lines (16 loc) 396 B
import cache from './cache'; export default { install(Vue) { Vue.prototype.$modal = { show(name, data) { const modal = cache[name]; modal.open(data); return modal; }, hide(name, data) { const modal = cache[name]; modal.close(data); }, }; }, };