File tree 3 files changed +22
-3
lines changed
3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change @@ -225,8 +225,10 @@ export function defineReactive(
225
225
* triggers change notification if the property doesn't
226
226
* already exist.
227
227
*/
228
+ export function set < T > ( array : T [ ] , key : number , value : T ) : T
229
+ export function set < T > ( object : object , key : string | number , value : T ) : T
228
230
export function set (
229
- target : Array < any > | Record < string , any > ,
231
+ target : any [ ] | Record < string , any > ,
230
232
key : any ,
231
233
val : any
232
234
) : any {
@@ -279,7 +281,9 @@ export function set(
279
281
/**
280
282
* Delete a property and trigger change if necessary.
281
283
*/
282
- export function del ( target : Array < any > | Object , key : any ) {
284
+ export function del < T > ( array : T [ ] , key : number ) : void
285
+ export function del ( object : object , key : string | number ) : void
286
+ export function del ( target : any [ ] | object , key : any ) {
283
287
if ( __DEV__ && ( isUndef ( target ) || isPrimitive ( target ) ) ) {
284
288
warn (
285
289
`Cannot delete reactive property on undefined, null, or primitive value: ${ target } `
Original file line number Diff line number Diff line change @@ -72,5 +72,6 @@ export { h } from './h'
72
72
export { getCurrentInstance } from './currentInstance'
73
73
export { useSlots , useAttrs } from './apiSetup'
74
74
export { nextTick } from 'core/util/next-tick'
75
+ export { set , del } from 'core/observer'
75
76
76
77
export * from './apiLifecycle'
Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ import {
11
11
shallowReactive ,
12
12
readonly ,
13
13
markRaw ,
14
- shallowReadonly
14
+ shallowReadonly ,
15
+ set ,
16
+ del
15
17
} from '../../index'
16
18
import { describe , expectType } from '../utils'
17
19
@@ -371,3 +373,15 @@ describe('shallowReadonly ref unwrap', () => {
371
373
expectType < Ref > ( r . count . n )
372
374
r . count . n . value = 123
373
375
} )
376
+
377
+ describe ( 'set/del' , ( ) => {
378
+ set ( { } , 1 , 'hi' )
379
+ set ( [ ] , 1 , 'bye' )
380
+ del ( { } , 'foo' )
381
+ del ( [ ] , 1 )
382
+
383
+ // @ts -expect-error
384
+ set ( { } , 1 )
385
+ // @ts -expect-error
386
+ del ( [ ] , 'fse' , 123 )
387
+ } )
You can’t perform that action at this time.
0 commit comments