Hey there! I've been working on a project using vuejs and bootstrap-vue-3. My goal is to allow users to print data about the company, so I created a print scss file for that purpose and added some styles. However, I'm facing an issue where the radio buttons are not filled when I try to print the webpage.
Here's how the webpage looks like: https://i.sstatic.net/SCTzj.png
And here's how it looks like when I try to print the page: https://i.sstatic.net/vk42A.png You can see (arrows pointing to) that the radio buttons are not filled.
This is how it appears in the inspector: https://i.sstatic.net/yKeda.png and this is the relevant code snippet:
<form-group
:validator="v$.form.companyType"
label="Company Type"
v-if="!isUserParentCompanyAdmin"
>
<b-form-radio-group
v-model="form.companyType"
:options="companyTypes"
/>
</form-group>
If you refer to the vue bootstrap docs page, you'll see that the filling functionality works there as expected.