I'm trying to include an external script depending on a var:
<div v-if="shouldInclude">
    <script src="/my-script.js"></script>
</div>
Yet according to the network panel, the script is loaded when shouldInclude is both true and false.
Where am I going wrong?
 
    