File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ export function reactive<T extends object>(obj: T): UnwrapRef<T> {
238
238
* Make sure obj can't be a reactive
239
239
*/
240
240
export function markRaw < T extends object > ( obj : T ) : T {
241
- if ( ! isPlainObject ( obj ) ) {
241
+ if ( ! isPlainObject ( obj ) || ! Object . isExtensible ( obj ) ) {
242
242
return obj ;
243
243
}
244
244
Original file line number Diff line number Diff line change @@ -308,6 +308,19 @@ describe('setup', () => {
308
308
expect ( warn ) . not . toHaveBeenCalled ( ) ;
309
309
} ) ;
310
310
311
+ it ( 'Should allow to return Object.freeze' , ( ) => {
312
+ const vm = new Vue ( {
313
+ template : `<div>{{foo.bar}}</div>` ,
314
+ setup ( ) {
315
+ const foo = Object . freeze ( { bar : 'baz' } ) ;
316
+ return {
317
+ foo,
318
+ } ;
319
+ } ,
320
+ } ) . $mount ( ) ;
321
+ expect ( vm . $el . textContent ) . toBe ( 'baz' ) ;
322
+ } ) ;
323
+
311
324
it ( 'this should be undefined' , ( ) => {
312
325
const vm = new Vue ( {
313
326
template : '<div></div>' ,
You can’t perform that action at this time.
0 commit comments