diff --git a/src/guide/quick-start.md b/src/guide/quick-start.md index dc01406bea..b1bb03e1a5 100644 --- a/src/guide/quick-start.md +++ b/src/guide/quick-start.md @@ -83,9 +83,29 @@ To get started with Vue without a build step, simply copy the following code int }).mount('#app') ``` - The above example uses the global build of Vue where all APIs are exposed under the global `Vue` variable. +To use **ref** or any vue 3 features, simply add **const { ref } = Vue** + + +```html + + +