Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <template>
  2. <div id="MyView">
  3. <v-toolbar app>
  4. <!-- Resuse the icon -->
  5. <slot name="toolbar-icon"></slot>
  6.  
  7. <v-toolbar-title>Custom Title for this View</v-toolbar-title>
  8.  
  9. <!-- Reuse the links -->
  10. <slot name="toolbar-links"></slot>
  11. </v-toolbar>
  12.  
  13. <v-content>
  14. <!-- Your usual View content goes here. -->
  15. </v-content>
  16. </div>
  17. </template>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement