Vue
the different of start between Vue2 and Vue3
http://localhost:3000
- Vue2
- Vue3
const app = new Vue({
  el: '#app',
  data: {
    name: 'Leedom'
  }
})
const app = {
  data() {
    return {
      name: 'Leedom'
    }
  }
}
Vue.createApp(app).mount('#app')