clarms-plugins-modal2.js
436 Bytes
export default {
data() {
return {
}
},
components: {},
computed: {},
methods: {
initData() {
},
onOverLayHandler() {
this.$emit("close");
},
toAccountInformation() {
this.$emit("close");
this.$root.eventBus.$emit('_evt_to_account_information');
},
toContact() {
this.$router.push({
path: "/custom/service?q=m1"
});
}
},
mounted() {
},
created() {
this.initData();
},
watch: {},
}