Question 1
Consider the following HTML, with the correct Vue 2 CDN links included.
<body> <div id="app" :class="['box', { active: isActive }]"> Vue Component </div> <script> new Vue({ el: '#app', data() { return { isActive: false, }; }, }); </script></body>What will be the final rendered class attribute of the <div> ?
box
active
box active
box inactive