Question 15
Consider the following Vue application with markup index.html and JavaScript file app.js.
File: index.html
<div id = "app"> <div>Welcome to Frontend Development</div> <new>Vue is a Frontend Framework</new></div><script src="script.js"></script>File: script.js
Vue.component('new', { template : `<div> <slot>Vue is JS Framework</slot> <div>Learn Vue 2 and Vue 3</div> </div> `
});
new Vue({ el : "#app",})What will be rendered on the browser screen?