]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: update runtime-dom/README example to latest signature (#693) [ci skip]
authorJacek Karczmarczyk <jkarczm@gmail.com>
Tue, 4 Feb 2020 14:24:29 +0000 (21:24 +0700)
committerGitHub <noreply@github.com>
Tue, 4 Feb 2020 14:24:29 +0000 (09:24 -0500)
packages/runtime-dom/README.md

index 07cbf6128dbf37c7f616ff60f047958e80737162..2ac2c4de8b9df6cf1f7eca9acd8cb703fd27d45b 100644 (file)
@@ -9,5 +9,5 @@ const RootComponent = {
   }
 }
 
-createApp().mount(RootComponent, '#app')
+createApp(RootComponent).mount('#app')
 ```