JSFiddle - React, Tailwind, and code Playground
by imall
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<div id="app">
<my-component message="簡單的小情歌"></my-component>
</div>
JavaScript
const app = Vue.createApp();
app.component('my-component', {
template: `
<div>
<div> {{ message }} </div>
</div>`,
// message 是自己定義的變數
props: ["message"]
});
app.mount('#app');