To start a Vue.js project, you need to create a new Vue instance. The Vue instance manages the lifecycle of the application and connects data to the template.
const app = Vue.createApp({ data() { return { message: "Hello Vue!" }; } }).mount("#app");
<div id="app">{{ message }}</div>