Below is a snippet of my straightforward code:
<v-checkbox
v-model="rodo"
label="I consent to Terms and Conditions (click for more info)"
:rules="termsRules"
required
></v-checkbox>
I am looking to keep the label simple with an option to display more information upon clicking. What would be the most effective approach? I envision something like this within the label:
I agree to Terms and Conditions
<span @click="showMore=!showMore">(click for more info)</span>
<span v-show="showMore">Lorem ipsum...</span>