policy-change-guide.js
559 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: {
onProjectHandler(item) {
if (item.projectType == 1) {
this.$router.push({
path: item.path,
query: item.query
})
}
},
initData() {}
},
mounted() {},
created() {}
}