构建脚手架
cnpm install -g vue-cli
在项目目录使用命令
vue init webpack
接下来输入项目名称、项目描述、作者、打包方式等
前端框架发送请求数据执行逻辑
跳转链接根据路由配置进入页面
路由配置:module目录下的router/index.js
页面也就是vue视图(component目录下的vue文件)
分三个部分:
- template:html标签
- script:
- data(){}:数据模型(和template中html标签内数据双向绑定)
- method(){}:当前页面需要的js方法
- create(){}:vue钩子函数(页面元素加载之前执行的方法)
- style:样式