当先锋百科网

首页 1 2 3 4 5 6 7

axios 安装

cnpm install axios --save

App.vue文件

<script>
import axios from 'axios'
export default {
  name: 'App',
  setup () {
    let api = 'https://api.apiopen.top/api/getHaoKanVideo?page=0&size=2'
    // 写法一:fetch
    // fetch(api).then(res => res.json()).then(result => {
    //   store.setList(result,'请求结果')
    // })
    // 写法二:axios
    axios.get(api).then(res => {
      console.log(res, '请求结果 ')
    })
  }
}
</script>