We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 373c44f + ec75afe commit b446b74Copy full SHA for b446b74
README.md
@@ -4202,7 +4202,13 @@ List of 300 VueJS Interview Questions
4202
**[⬆ Back to Top](#table-of-contents)**
4203
4204
197. ### How do you create reactive objects?
4205
- From 2.6 version onwards, you can create reactive objects with Vue.observable() global API.
+ In version 3.0 you can create a reactive object with the reactive() API.
4206
+ ```javascript
4207
+ const reactiveState = reactive({
4208
+ count: 0
4209
+ })
4210
+ ```
4211
+ In version 2.6, you can create reactive objects with Vue.observable() global API.
4212
```javascript
4213
const reactiveState = Vue.observable({
4214
count: 0
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments