import { mapActions, mapMutations } from "vuex"; const global = { methods: { $_getPath(subPath) { return '/' + subPath; }, //Modal ...mapActions("modal", ["openModal", "closeModal", "dialog"]), $_openModal(options) { this.openModal(options); }, $_closeModal(options) { this.closeModal(options); }, //Alert $_dialog(options) { this.dialog(options); }, } }; export {global}