浏览代码

Rest Spread is now at Stage 3 (#371)

https://github.com/sebmarkbage/ecmascript-rest-spread
Cory 8 年之前
父节点
当前提交
f0d439f881
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/en/state.md

+ 1 - 1
docs/en/state.md

@@ -80,7 +80,7 @@ export default {
 
 ### Object Spread Operator
 
-Note that `mapState` returns an object. How do we use it in combination with other local computed properties? Normally, we'd have to use a utility to merge multiple objects into one so that we can pass the final object to `computed`. However with the [object spread operator](https://github.com/sebmarkbage/ecmascript-rest-spread) (which is a stage-2 ECMASCript proposal), we can greatly simplify the syntax:
+Note that `mapState` returns an object. How do we use it in combination with other local computed properties? Normally, we'd have to use a utility to merge multiple objects into one so that we can pass the final object to `computed`. However with the [object spread operator](https://github.com/sebmarkbage/ecmascript-rest-spread) (which is a stage-3 ECMASCript proposal), we can greatly simplify the syntax:
 
 ``` js
 computed: {