diff --git a/src/guide/render-function.md b/src/guide/render-function.md index adfd00b9e8..4653732d7c 100644 --- a/src/guide/render-function.md +++ b/src/guide/render-function.md @@ -173,7 +173,7 @@ If there are no props then the children can usually be passed as the second argu With this knowledge, we can now finish the component we started: ```js -const { createApp, h } = Vue +import { createApp, h } from 'vue' const app = createApp({})