diff --git a/docs/zh-cn/README.md b/docs/zh-cn/README.md index f09fa22d2..775459aee 100644 --- a/docs/zh-cn/README.md +++ b/docs/zh-cn/README.md @@ -8,7 +8,7 @@ 这里有一些 `vue-loader` 提供的很酷的特性: -- ES2015 默认支持; +- ES2015 默认支持; - 允许对 Vue 组件的组成部分使用其它 Webpack loaders,比如对 ` ``` -但是,这使你的 Vue 组件只适用于 Webpack,不能与 Browserify and [vueify](https://github.com/vuejs/vueify) 一同使用。**如果你打算将你的 Vue 组件作为可重复使用的第三方组件,请避免使用这个语法。** +但是,这使你的 Vue 组件只适用于 Webpack,不能与 Browserify 和 [vueify](https://github.com/vuejs/vueify) 一同使用。**如果你打算将你的 Vue 组件作为可重复使用的第三方组件,请避免使用这个语法。** diff --git a/docs/zh-cn/features/css-modules.md b/docs/zh-cn/features/css-modules.md index 24a689081..8789895a2 100644 --- a/docs/zh-cn/features/css-modules.md +++ b/docs/zh-cn/features/css-modules.md @@ -2,7 +2,7 @@ > 需要 ^9.8.0 -[CSS 模块](https://github.com/css-modules/css-modules) 是一个用于模块化和组合 CSS的流行系统。`vue-loader` 提供了与 CSS 模块的一流集成,可以作为模拟 CSS 作用域的替代方案。 +[CSS 模块](https://github.com/css-modules/css-modules)是一个用于模块化和组合 CSS的流行系统。`vue-loader` 提供了与 CSS 模块的一流集成,可以作为模拟 CSS 作用域的替代方案。 ### 使用 @@ -58,7 +58,7 @@ export default { ``` -请参考 [CSS Modules spec](https://github.com/css-modules/css-modules) 了解更多详细信息 [global exceptions](https://github.com/css-modules/css-modules#exceptions) 和 [composition](https://github.com/css-modules/css-modules#composition). +请参考 [CSS Modules spec](https://github.com/css-modules/css-modules) 了解更多诸如 [global exceptions](https://github.com/css-modules/css-modules#exceptions) 和 [composition](https://github.com/css-modules/css-modules#composition) 等详细信息。 ### 自定义注入名称 diff --git a/docs/zh-cn/features/es2015.md b/docs/zh-cn/features/es2015.md index 8c0184e1c..6bca7f0fd 100644 --- a/docs/zh-cn/features/es2015.md +++ b/docs/zh-cn/features/es2015.md @@ -22,11 +22,11 @@ export default { ``` -我们使用 ES2015 的属性的简洁表示法去定义子组件,`{ ComponentA }` 是 `{ ComponentA: ComponentA }` 的简写,Vue 会自动的将 key 转换为`component-a`,所以你可以在 template 中使用 ``. +我们使用 ES2015 的属性的简洁表示法去定义子组件,`{ ComponentA }` 是 `{ ComponentA: ComponentA }` 的简写,Vue 会自动的将 key 转换为`component-a`,所以你可以在 template 中使用 ``。 ### 在 Templates 中使用 ES2015 -`.vue` 中的 `