You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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>
Passing `ref`, `reactive` or other reactive apis to `data()` would not work.
321
+
322
+
```jsx
323
+
exportdefault {
324
+
data() {
325
+
return {
326
+
// will result { a: { value: 1 } } in template
327
+
a:ref(1)
328
+
}
329
+
},
330
+
};
331
+
```
332
+
318
333
## SSR
319
334
320
335
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.
0 commit comments