how to run a vue js hello world app in vue version 3
<script src="https://unpkg.com/vue@next"></script>
how to run a vue js hello world app in vue version 3
<script src="https://unpkg.com/vue@next"></script>
vuejs 3 app.mount
// HTML file
<body>
<div id="app">
// Your app here
</div>
</body>
// JS file
import { createApp } from 'vue';
import App from './App.vue';
const app = createApp(App);
app.mount('#app');
create vue app
vue create my-project
# OR
vue ui
vue create project
vue create my-app
# navigate to new project directory
cd my-app
vue 3 create app
vue create hello-world
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us