Skip to content

Commit bca3a69

Browse files
authoredJun 10, 2020
fix(setup): Allow retuning frozen objects on the setup (#366)
1 parent 34c0fad commit bca3a69

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed
 

‎src/reactivity/reactive.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ export function reactive<T extends object>(obj: T): UnwrapRef<T> {
238238
* Make sure obj can't be a reactive
239239
*/
240240
export function markRaw<T extends object>(obj: T): T {
241-
if (!isPlainObject(obj)) {
241+
if (!isPlainObject(obj) || !Object.isExtensible(obj)) {
242242
return obj;
243243
}
244244

‎test/setup.spec.js

+13
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,19 @@ describe('setup', () => {
308308
expect(warn).not.toHaveBeenCalled();
309309
});
310310

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+
311324
it('this should be undefined', () => {
312325
const vm = new Vue({
313326
template: '<div></div>',

0 commit comments

Comments
 (0)
Please sign in to comment.