一、vue脚手架安装步骤
1.全局安装
1 | npm install -g @vue/cli |
2.安装完,会在全局有vue命令
1 | vue -V |
3.创建项目
1 | vue create weibo |
4.定位到该文件夹
1 | cd weibo |
5.启动服务器
1 | npm run serve |
- 利用路由传递参数
1 | this.$route.push({path:'/xxx',query:{id:1}});//类似get传参,通过URL传递参数 |
- 接收参数
1 | this.$route.query.id |
- 利用emit发送数据
1 | this.$emit('showCityName',data); |
- 利用on接收数据
1 | this.$on('increment',function(msg){ |