You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
287 B

  1. <template>
  2. <v-container fluid>
  3. <slot name="header" />
  4. <v-row justify="center">
  5. <v-col cols="12" md="9">
  6. <slot name="content" />
  7. </v-col>
  8. <v-col cols="12" md="3">
  9. <slot name="sidebar" />
  10. </v-col>
  11. </v-row>
  12. </v-container>
  13. </template>