Blame view

src/pages/privacy/privacy.js 264 Bytes
simon committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
import api from '@/api/api'
import {
	httpGet,
	httpPost
} from '@/api/fetch-api.js'

export default {
	data() {
		return {
			key: 'value'
		}
	},
	components: {},
	methods: {
		initData() {}
	},
	mounted() {},
joe committed
18 19 20
	created() {
		console.log(this.$i18n.locale);
	}
simon committed
21
}