<div id="app">
<danger-button></danger-button>
</div>
xxxxxxxxxx
html, body {
display: grid;
justify-content: center;
justify-items: center;
align-content: center;
height: 100vh;
}
const app = Vue.createApp({})
const dangerButton = {
template: `
<button class="btn btn-danger">
Danger Button
</button>`
}
/* ↓ YOUR CODE GOES HERE ↓ */
/* ↑ YOUR CODE GOES HERE ↑ */
app.mount('#app')