<div id="app">
<button type="button" @click="count++">
Count is: {{ count }}
</button>
<hr/>
<button type="button" @click="sayHi">打招呼</button>
</div>
const { createApp } = Vue;
const app = createApp({
data() {
return {
count: 0,
};
},
methods: {
sayHi() {
window.alert('Hello Ray.');
},
},
});
app.mount('#app');
This Pen doesn't use any external CSS resources.