require
var json = require('文件的相对地址');
ajax
this.$ajax.get('http://localhost:80/static/map/province/anhui' +'.json').then( response => {this.json = response.data;})
axios
axios.get('../../static/data.json').then(response => {console.log(response.data);}, response => {console.log("error");});
