// Create Vue application const app = Vue.createApp(...) // Define a new component called todo-item app.component('todo-item', { template: `<li>This is a todo</li>` }) // Mount Vue application app.mount(...)