[Vuejs]-Content of the website goes beside the toolbar instead of below

0👍

I guess the problem is ‘float’. You will need a div with clear:both style after the toolbar and before the div containing router-view.

div class=”toolbar”

/div

div style=”clear:both”/

div

router-view

Leave a comment