第四节:Vue组件
组件 1 fetch和axios axios与fetch实现数据请求 (1)fetch(不是所有浏览器都支持,谷歌浏览器支持) XMLHttpRequest 是一个设计粗糙的 API,配置和调用方式非常混乱,而且基于事件的异步模型写起来不友好。 兼容性不好 polyfill: https://github.com/camsong/fetch-ie8…
第五节:Vue进阶
1 slot插槽 (内容分发) a. 单个slot b. 具名slot *混合父组件的内容与子组件自己的模板-->内容分发 *父组件模板的内容在父组件作用域内编译;子组件模板的内容在子组件作用域内编译。 1.1 基本使用 <!DOCTYPE html> <html lang="en"> <he…
第六节:Vue-cli
Vue-CLI 项目搭建 1 单文件组件 https://cn.vuejs.org/v2/guide/single-file-components.html#ad 2 Vue-CLI 项目搭建 2.1 环境搭建 - 安装node 官网下载安装包,傻瓜式安装:https://nodejs.org/zh-cn/ - 安装cnpm npm install…