23 lines
480 B
Vue
23 lines
480 B
Vue
<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>
|