From e1a2bcd8967105fc8041f531c69433b037b1c624 Mon Sep 17 00:00:00 2001 From: falstack Date: Tue, 16 Mar 2021 20:03:37 +0800 Subject: [PATCH] Update render-function.md fixed import vue typo --- src/guide/render-function.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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({})