<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');

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://unpkg.com/vue@3