Skip to content

Commit b9fab71

Browse files
antfupikax
andauthoredJun 21, 2020
revert: #387 (#395)
* Revert "fix: unwrap refs returned by `data` (#387)" This reverts commit 1f07075. * docs: add limitation note for reactive apis in data() Co-authored-by: Carlos Rodrigues <david-181@hotmail.com>
1 parent 2a2629e commit b9fab71

File tree

3 files changed

+27
-62
lines changed

3 files changed

+27
-62
lines changed
 

‎README.md

+15
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,21 @@ declare module '@vue/composition-api/dist/component/component' {
315315
}
316316
```
317317

318+
### :x: Reactive APIs in `data()`
319+
320+
Passing `ref`, `reactive` or other reactive apis to `data()` would not work.
321+
322+
```jsx
323+
export default {
324+
data() {
325+
return {
326+
// will result { a: { value: 1 } } in template
327+
a: ref(1)
328+
}
329+
},
330+
};
331+
```
332+
318333
## SSR
319334

320335
Even if there is no definitive Vue 3 API for SSR yet, this plugin implements the `onServerPrefetch` lifecycle hook that allows you to use the `serverPrefetch` hook found in the classic API.

‎src/setup.ts

+12-16
Original file line numberDiff line numberDiff line change
@@ -154,22 +154,6 @@ export function mixin(Vue: VueConstructor) {
154154
}
155155
}
156156

157-
const { data } = $options
158-
// wrapper the data option, so we can invoke setup before data get resolved
159-
$options.data = function wrappedData() {
160-
if (setup) {
161-
initSetup(vm, vm.$props)
162-
}
163-
const dataValue =
164-
typeof data === 'function'
165-
? (data as (
166-
this: ComponentInstance,
167-
x: ComponentInstance
168-
) => object).call(vm, vm)
169-
: data || {}
170-
return unwrapRefProxy(dataValue)
171-
}
172-
173157
if (!setup) {
174158
return
175159
}
@@ -182,6 +166,18 @@ export function mixin(Vue: VueConstructor) {
182166
}
183167
return
184168
}
169+
170+
const { data } = $options
171+
// wrapper the data option, so we can invoke setup before data get resolved
172+
$options.data = function wrappedData() {
173+
initSetup(vm, vm.$props)
174+
return typeof data === 'function'
175+
? (data as (
176+
this: ComponentInstance,
177+
x: ComponentInstance
178+
) => object).call(vm, vm)
179+
: data || {}
180+
}
185181
}
186182

187183
function initSetup(vm: ComponentInstance, props: Record<any, any> = {}) {

‎test/setup.spec.js

-46
Original file line numberDiff line numberDiff line change
@@ -84,19 +84,6 @@ describe('setup', () => {
8484
expect(vm.b).toBe(1)
8585
})
8686

87-
// #385
88-
it('should unwrapRef on data', () => {
89-
const vm = new Vue({
90-
data() {
91-
return {
92-
a: ref(1),
93-
}
94-
},
95-
setup() {},
96-
}).$mount()
97-
expect(vm.a).toBe(1)
98-
})
99-
10087
it('should work with `methods` and `data` options', (done) => {
10188
let calls = 0
10289
const vm = new Vue({
@@ -769,37 +756,4 @@ describe('setup', () => {
769756
const vm = new Vue(Constructor).$mount()
770757
expect(vm.$el.textContent).toBe('Composition-api')
771758
})
772-
773-
it('should keep data reactive', async () => {
774-
const vm = new Vue({
775-
template: `<div>
776-
<button id="a" @click="a++">{{a}}</button>
777-
<button id="b" @click="b++">{{b}}</button>
778-
</div>`,
779-
data() {
780-
return {
781-
a: 1,
782-
b: ref(1),
783-
}
784-
},
785-
}).$mount()
786-
787-
const a = vm.$el.querySelector('#a')
788-
const b = vm.$el.querySelector('#b')
789-
790-
expect(a.textContent).toBe('1')
791-
expect(b.textContent).toBe('1')
792-
793-
a.click()
794-
await Vue.nextTick()
795-
796-
expect(a.textContent).toBe('2')
797-
expect(b.textContent).toBe('1')
798-
799-
b.click()
800-
await Vue.nextTick()
801-
802-
expect(a.textContent).toBe('2')
803-
expect(b.textContent).toBe('2')
804-
})
805759
})

0 commit comments

Comments
 (0)
Please sign in to comment.