vue cli3.0以上访问本地JSON文件

1,408 阅读1分钟

文件目录为:public/index.json

请求就是: http://localhost:8080/index.json

``getData() {
      let that = this
      that.$axios.get('/index.json')
        .then(function (res) {
          console.log(res)
        })
    },