fix typos

This commit is contained in:
qianguyihao 2020-01-13 11:01:38 +08:00
parent 6447c8eee9
commit e66664e626
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
### ES6模块化的说明
**依赖模块需要编译打包处理**原因如下:
**依赖模块需要编译打包处理**原因如下:
- 1有些浏览器不支持 ES6 的语法,写完 ES6 的代码后,需要通过`Babel`将 ES6 转化为 ES5。

View File

@ -26,7 +26,7 @@
## Vue初体验
新建一个空的项目引入vue.js文件。写如下代码
新建一个空的项目,引入`vue.js`文件。写如下代码:
```html
<!DOCTYPE html>

View File

@ -669,7 +669,7 @@ key的类型只能是string/number而且要通过 v-bind 来指定。
<input type="button" value="添加" @click="add">
</div>
<!-- 注意: v-for 循环的时候key 属性只能使用 number获取string -->
<!-- 注意: v-for 循环的时候key 属性只能使用 number 或者 string -->
<!-- 注意: key 在使用的时候,必须使用 v-bind 属性绑定的形式,指定 key 的值 -->
<!-- 在组件中使用v-for循环的时候或者在一些特殊情况中如果 v-for 有问题,必须 在使用 v-for 的同时,指定 唯一的 字符串/数字 类型 :key 值 -->
<p v-for="item in list" :key="item.id">