We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents af2a3b0 + 8bf0b31 commit d84a940Copy full SHA for d84a940
src/guide/list.md
@@ -365,7 +365,7 @@ Vue 包含一组观察数组的变异方法,所以它们也将会触发视图
365
366
### 重塑数组
367
368
-变异方法(mutation method),顾名思义,会改变被这些方法调用的原始数组。相比之下,也有非变异(non-mutating method)方法,例如: `filter()`, `concat()`, `slice()` 。这些不会改变原始数组,但总是返回一个新数组。当使用用非变异方法时,可以用新数组替换旧数组:
+变异方法(mutation method),顾名思义,会改变被这些方法调用的原始数组。相比之下,也有非变异(non-mutating method)方法,例如: `filter()`, `concat()`, `slice()` 。这些不会改变原始数组,但总是返回一个新数组。当使用非变异方法时,可以用新数组替换旧数组:
369
370
``` js
371
example1.items = example1.items.filter(function (item) {
0 commit comments