似曾相识的错误,尝试过放到src目录下,尝试了放到根目录下(现在就是在根目录下)这个文件目录怎么调换都是报错。
解决:静态资源要放到static文件夹里!!!
js代码
export default {
name: 'home',
data () {
//存放数据
return {
}
},
//生命周期 - 挂载完成(可以访问DOM元素)
mounted(){
this.showData();
},
//存放方法
methods:{
showData:function () {
this.$http.get("http://localhost:8080/static/data1.json").then(response => {
console.log(response.body);
}, response => {
});
}
},
////import引入的组件需要注入到components对象中才能使用"
components: {
rrheader,
rrbottom
},
}