sohelp-ele
Version:
SohelpEle Library
24 lines (23 loc) • 548 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);
}
}
};
module.exports = SohelpMixins;