Reputation: 193
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?
Upvotes: 0
Views: 644
Reputation: 1
v-divider
is just a component wrapper of hr
element with some styles and props like :
vertical
prop to make verticalUpvotes: 2