clarms-plugins-modal2.js 493 Bytes
export default {
	data() {
		return {

		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
	},
	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: {},
}