Gitlab Community Edition Instance

Skip to content
Snippets Groups Projects

Resolve "Update Vuetify"

Merged Jakob Dieterle requested to merge 250-update-vuetify into master
1 file
+ 17
16
Compare changes
  • Side-by-side
  • Inline
<template>
<v-row>
<v-col cols="6">
<router-view name="left" />
</v-col>
<v-col
cols="6"
class="ml-3"
>
<div class="right-view">
<router-view
name="right"
@refresh="refresh"
/>
</div>
</v-col>
</v-row>
<v-container>
<v-row>
<v-col cols="6">
<router-view name="left" />
</v-col>
<v-col
cols="6"
>
<div class="right-view">
<router-view
name="right"
@refresh="refresh"
/>
</div>
</v-col>
</v-row>
</v-container>
</template>
<script lang="ts">
Loading