Get your own Vue server
App.vue
main.js
 
<template>
  <h1>{{ message }}</h1>
</template>

<script>
  export default {
    data() {
      return{
        message: 'This is some text'
      }
    }
  }
</script>

<style></style>                  
import { createApp } from 'vue'
import App from './App.vue'

createApp(App).mount('#app')
                  
http://localhost:5173/