vue-cli3.0安装以及配置
- 资料 https://blog.csdn.net/qq_36407748/article/details/80739787
vue-cli3.0安装
- 配置要求node8版本以上
1
2
3npm install -g @vue/cli
# OR
yarn global add @vue/cli - 版本监测
1
vue -V
- 创建项目
1
2
3vue create vue-project
# OR
vue ui - 启动项目
1
2
3cd vue-project
npm run serve
yarn servevue请求本地json
- vue请求本地json需要绝对路径
1
2
3
4
5
6
7
8
9
10
11文件目录为:public/json/menulist.json
请求就是: http://localhost:8082/index.json
fetch('http://localhost:8082/json/menulist.json',{
method:'GET',
})
.then((res)=>{
return res.json();
})
.then((res)=>{
console.log(res)
})