Online Vue.js Editor

<html> <head> <title>VueJs Demo Example</title> <script src="https://unpkg.com/vue@3"></script> </script> </head> <body> <h1 id="app">{{ message }}</h1> <script> const { createApp } = Vue createApp({ data() { return { message: 'Hello Vue!' } } }).mount('#app') </script> </body> </html>