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)
    })
  }

打印结果:

原文地址:https://www.cnblogs.com/wuqilang/p/15332587.html