This commit is contained in:
2020-07-23 18:10:35 +00:00
parent 506ab7de11
commit 8a713c2b1f
4 changed files with 46 additions and 16 deletions

View File

@@ -0,0 +1,22 @@
<template>
<div>Opening...</div>
</template>
<script>
export default {
data() {
return {};
},
created() {
//Capture open object type and id if present
// path: "/open/:ayatype/:recordid",
//vm.$route.params.ayatype
//vm.$route.params.recordid
//{ type: [AYATYPE], id: [RECORDID] }
window.$gz.eventBus.$emit("openobject", {
type: Number(this.$route.params.ayatype),
id: Number(this.$route.params.recordid)
});
}
};
</script>