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

Popular posts from this blog

How to understand 2 main() functions after using uftrace to profile the C++ program? -

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -