Consider two cases:
1.
<v-container>
<!--Some code here-->
</v-container>
<v-divider></v-divider>
<v-container>
<!--Some code here-->
</v-container>
<hr>
Is the difference only in color and height or some other aspects as well?
CodePudding user response:
v-divider
is just a component wrapper of hr
element with some styles and props like :
- direction, you could add
vertical
prop to make vertical - color mode dark/light
- inset to translate it.