Skip to content
On this page

Vue

the different of start between Vue2 and Vue3

VUE2
VUE3
js
const app = new Vue({
  el: '#app',
  data: {
    name: 'Leedom'
  }
})