this.$http({
url: this.$http.adornUrl(''),
method: 'get',
data: this.$http.adornParams({})
}).then(({data}) => {
})
this.$http({
url: this.$http.adornUrl(''),
method: 'post',
data: this.$http.adornData(data, false)
}).then(({data}) => {
})
<template>
<div>
</div>
</template>
<script>
export default {
components: {},
props: {},
data () {
return {}
},
computed: {},
watch: {},
methods: {},
created () {
},
mounted () {
},
beforeCreate () {
},
beforeMount () {
},
beforeUpdate () {
},
updated () {
},
beforeDestroy () {
},
destroyed () {
},
activated () {
}
}
</script>
<style land="scss" scoped>
</style>