footer.js
295 Bytes
import api from '@/api/api'
import {
httpGet,
httpPost
} from '@/api/fetch-api.js'
export default {
data() {
return {
key: 'value'
}
},
components: {},
methods: {
toPage(name) {
this.$router.push({
name: name
})
},
initData() {}
},
mounted() {},
created() {}
}