-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
Open
Description
What problem does this feature solve?
fill
and copyWithIn
methods are also mutating methods and has Standard status currently ECMAScript 2015 Language Specification – ECMA-262 6th Edition - copywithin , but they aren't being intercepted in
vue/src/core/observer/array.js
Lines 11 to 19 in 237294d
const methodsToPatch = [ | |
'push', | |
'pop', | |
'shift', | |
'unshift', | |
'splice', | |
'sort', | |
'reverse' | |
] |
What does the proposed API look like?
null
dennythecoder and andrewsm80