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

export default {
	data() {
		return {
			key: 'value'
		}
	},
	components: {},
	methods: {
		initData() {}
	},
	mounted() {},
	created() {
		console.log(this.$i18n.locale);
	}
}