Question 8
Consider the following two HTML documents and the Vue app created in script.js file and select the correct option(s).
index1.html
<body> <div id="app"> <h1 v-if="result">Hello am I visible?</h1> </div> <script src="./script.js"></script></body>index2.html
<body> <div id="app"> <h1 v-show="final">Hello am I visible?</h1> </div> <script src="./script.js"></script></body>script.js
var app = new Vue({ el: '#app', data: { result: false, final: false }})