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