Key app parts

Vue CLI-based projects include the following key parts :

  • main.js: This is the main entry point, which takes care of bootstrapping the entire application and mounting the root component to the HTML DOM, as shown in the following code:
new Vue({
render: h => h(App)
}).$mount('#app');
  • App.vue: This is the root application component, and will be studied next as you learn about Vue components.
..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.144.40.63