Blame view

src/components/clarms/clarms-plugins-modal2.js 493 Bytes
joe committed
1
export default {
simon committed
2 3
	data() {
		return {
joe committed
4

simon committed
5 6 7
		}
	},
	components: {},
simon committed
8 9 10 11 12
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
	},
simon committed
13 14
	methods: {
		initData() {
joe committed
15

simon committed
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
		},
		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() {
joe committed
31

simon committed
32 33 34 35 36
	},
	created() {
		this.initData();
	},
	watch: {},
joe committed
37
}