index.js 551 Bytes
/**
 * 页面描述:官网首页
 */


import api from '@/api/api';
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js';

export default {
	data() {
		return {
			key: 'value',

		}
	},
	components: {},
	computed: {
		locale() {
			return this.$i18n.locale || 'tc';
		},
		i18n() {
			return this.$i18n.messages && this.$i18n.locale ? this.$i18n.messages[this.$i18n.locale] : {};
		},
	},
	methods: {
	},
	beforeDestroy() {
	},
	mounted() {
	},
	created() {
		this.$root.eventBus.$on("langChange", () => {
			try {
			} catch (e) { }
		});
	}

}