Question 5
Consider the following Vue application with javascript file “app.js” and markup file “index.html”.
index.html
<body> <div id="app"></div></body>app.js
const Product = { template: `<div> <slot name="title">No title</slot> <slot>No Description Given</slot> <slot name="price">Flexible</slot> </div>`,}new Vue({ el: '#app', template: ` <Product> <p> <b>Lenovo Desktop</b> 8GB RAM, 512GB SSD </p> <template v-slot:price> 61K </template> </Product>`, components: { Product, },})Suppose the application is running on “http://localhost:8080”. What will be rendered by the browser for the URL “http://localhost:8080/#/”?