vue脚手架项目配置后端接口(mock数据)

vue.config.js: 

  devServer: {
    before: function (app) {
      app.get('/aaa', (req, res) => {
        res.json({
          errno: 0,
          data: { id: 1, name: '小明' }
        })
      })
    }
  }

App.vue:

  created() {
    axios.get('/aaa').then((res) => {
      console.log(res.data)
    })
  }

 

打印结果:

 

posted @ 2021-09-24 20:46  吴小明-  阅读(230)  评论(0编辑  收藏  举报