What does "mount" mean on using instance of vue.js to target a DOM element? (even in plain English?). For example in following:
This code creates a new instance of Vue and mounts it on the HTML element with the ID of app.
const app = new Vue().$mount('#app');
When the Vue instance has the el option, it automatically mounts to that element