-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
39 lines (38 loc) · 882 Bytes
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
<v-app>
<v-main>
<v-navigation-drawer
permanent
>
<v-list>
<v-list-item
prepend-icon="mdi-view-dashboard"
title="Home (vuetify datatable)"
to="/"
/>
<v-list-item
prepend-icon="mdi-account-box"
title="Simple Datatable"
to="/simple"
/>
<v-list-item
prepend-icon="mdi-gavel"
title="Multiple Datatable"
to="/multiple-vuetify"
/>
</v-list>
</v-navigation-drawer>
<v-container class="fill-height">
<v-responsive
class="align-centerfill-height mx-auto"
max-width="900"
>
<router-view />
</v-responsive>
</v-container>
</v-main>
</v-app>
</template>
<script lang="ts" setup>
//
</script>