<div id="app">
  <button class="btn btn-secondary" v-on:click="greeting">Say Hello</button>
</div>
html, body {
  display: grid;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  
}
const app = Vue.createApp({
  data: function () {
    return { name: 'John' }
  },
  methods: {
    greeting: function () {
      // the this keyword is used access the data object
      if (this.name) {
        alert(`Hello ${this.name}`)
      } else {
        alert('Hello Friend.')
      }
    }
  }
})

const vm = app.mount('#app')

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css

External JavaScript

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