Question 15
Consider the following HTML index.html and JavaScript app.js for a Vue application:
File: index.html
File: app.js
Which of the following statements is/are TRUE?
On initial page load, neither “Hello” nor “World” is visible in the browser.
On initial page load, the element using v-show exists in the DOM but is hidden.
After clicking the Toggle button once, both “Hello” and “World” become visible.
The v-if directive hides elements using CSS.
The v-show directive removes elements from the DOM when the condition is false.