i use framework7-vue + vuejs. Components, like chip, have simple syntax:
<f7-chip text="Example Chip"></f7-chip>
and generate simple html:
<div data-v-aa85b83a="" class="chip">
<div class="chip-label">Example Chip</div>
</div>
element .chip has data-v attribute, why .chip-label doesnt?
I need set style over chip-label, i know about /deep/ styling, but its shame. can i set data-v attribute to childrent elements dynamical components?
.chip{ margin:0 5px 10px 0; /deep/ .chip-label{ margin-top:-2px; } }i need scss:.chip{ margin:0 5px 10px 0; .chip-label{ margin-top:-2px; } }