Advertisement
Guest User

Important HTML

a guest
Jul 22nd, 2021
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. I'm using Vue to render nested components, like "structure-menu"
  2. I've removed all the unrelated stuff and all the Vue component arguments, as these are not really important
  3.  
  4. <!-- Template for a controlgroup (the entire thing under "Band controls" in the gif from the question) -->
  5.  
  6.       <div class="entire-controlgroup">
  7.  
  8.       <ul class="controlgroup-nav">
  9.         <!-- Unrelated code to render the row of navigation buttons -->
  10.       </ul>
  11.  
  12.       <div class="controlgroup-wrapper">
  13.         <div class="controlgroup-menus"> <!-- This is the .big-scrollable class from the question -->
  14.           <structure-menu v-for="(menu, index) in controlGroupContents"/>
  15.         </div>
  16.  
  17.         <structure-menu class="controlgroup-complement"/>
  18.       </div>
  19.       </div>
  20.  
  21. <!-- Template for a structure-menu (the .main-block from the question) -->
  22.       <div class="settings-menu">
  23.         <h4>{{ header }}</h4>
  24.         <div class="menu-columns"> <!-- .column-container from the question -->
  25.           <div v-for="column in columns" class="menu-contents">
  26.             <structure-widgetlike v-for="(widgetlike, index) in column.menuWidgets"/><!-- Not very important -->
  27.           </div>
  28.         </div>
  29.       </div>
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement