Question 10
Consider the below Vue application with markup file “index.html” and javascript file “app.js”.
index.html:
<div id="app"></div>app.js:
new Vue({ el: '#app', template: `<div>{{message}}</div>`, data: { message: null, }, created() { this.message = 'Hello from created' }, mounted() { this.message = 'Hello from mounted' },})Suppose the application is running on “http://localhost:8080”. What will be rendered by the browse in the div of the template?