I am trying something like this:
<b-form-checkbox
id="currently_working"
v-model="currentlyWorking"
value="true"
unchecked-value="false">
<span class="fs--1">
I am currently working here
</span>
</b-form-checkbox>
</b-form-group>
<p v-if="currentlyWorking">currently working</p>
However, something is going wrong here because the paragraph tag isn't toggling based on currentWorking state.
Here is the codesandbox link : https://codesandbox.io/s/agitated-night-jnhxz?file=/src/components/HelloWorld.vue:43-361