<div id="app">
</div>
const Hello = {
  template: `<h1>{{ text }}</h1><p>This is Vue 3</p><p>It's Awesome!</p>`,
  data() {
    return {
      text: "Hello"
    };
  }
};

Vue.createApp(Hello).mount("#app");

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://unpkg.com/vue@next