vue.js - Bootstrap row and col pattern in Vue Js templates -
i have significant amount of layers in app: 1 app div @ top:
<div id="app"> <div class="container-fluid"> <app-header></app-header> <router-view class="view"></router-view> </div> </div> then each router view 1 component, composed of multiple components , on , on.
i understand that, bootstrap work correctly, row , col elements should interleaved: row should have col children , col should have row children.
is there recommended pattern follow keep things clean? mean should component's top element row or col? should class denoted within template or, @ parent, used?
Comments
Post a Comment