@@ -2,7 +2,7 @@ import { reactive, readonly, toRaw } from './reactive'
2
2
import { TrackOpTypes , TriggerOpTypes } from './operations'
3
3
import { track , trigger , ITERATE_KEY } from './effect'
4
4
import { LOCKED } from './lock'
5
- import { isObject , hasOwn , isSymbol , hasChanged } from '@vue/shared'
5
+ import { isObject , hasOwn , isSymbol , hasChanged , isArray } from '@vue/shared'
6
6
import { isRef } from './ref'
7
7
8
8
const builtInSymbols = new Set (
@@ -15,8 +15,21 @@ const get = /*#__PURE__*/ createGetter()
15
15
const readonlyGet = /*#__PURE__*/ createGetter ( true )
16
16
const shallowReadonlyGet = /*#__PURE__*/ createGetter ( true , true )
17
17
18
+ const arrayIdentityInstrumentations : Record < string , Function > = { }
19
+ ; [ 'includes' , 'indexOf' , 'lastIndexOf' ] . forEach ( key => {
20
+ arrayIdentityInstrumentations [ key ] = function (
21
+ value : unknown ,
22
+ ...args : any [ ]
23
+ ) : any {
24
+ return toRaw ( this ) [ key ] ( toRaw ( value ) , ...args )
25
+ }
26
+ } )
27
+
18
28
function createGetter ( isReadonly = false , shallow = false ) {
19
29
return function get ( target : object , key : string | symbol , receiver : object ) {
30
+ if ( isArray ( target ) && hasOwn ( arrayIdentityInstrumentations , key ) ) {
31
+ return Reflect . get ( arrayIdentityInstrumentations , key , receiver )
32
+ }
20
33
const res = Reflect . get ( target , key , receiver )
21
34
if ( isSymbol ( key ) && builtInSymbols . has ( key ) ) {
22
35
return res
0 commit comments