sohelp-ele
Version:
SohelpEle Library
23 lines (22 loc) • 539 B
JavaScript
var SohelpMixins = {
provide: function() {
return {
$this: this
};
},
methods: {
openModal(refid, config) {
return this.$refs.sohelpVformModalPoolRef.open(refid, config);
},
getModal(refid) {
return this.$refs.sohelpVformModalPoolRef.get(refid);
},
openDrawer(refid, config) {
return this.$refs.sohelpVformDrawerPoolRef.open(refid, config);
},
getDrawer(refid) {
return this.$refs.sohelpVformDrawerPoolRef.get(refid);
}
}
};
export { SohelpMixins as default };