Answers for "create a app with vue js"

5

create vue app

vue create my-project
# OR
vue ui
Posted by: Guest on September-07-2020
0

how use vue createApp

const app = Vue.createApp({
  data() {
    return { count: 4 }
  }
})

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

console.log(vm.count) // => 4
Posted by: Guest on May-19-2021

Browse Popular Code Answers by Language