generated from chakAs3/storybook-nuxt-examples
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.vue
56 lines (55 loc) · 1.27 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<script setup>
defineProps({
message: String,
})
</script>
<template>
<v-container>
<v-row>
<v-col>
<v-sheet
class="pa-4 d-flex align-center flex-column"
color="grey-lighten-3"
rounded="lg"
>
<div>
<v-icon
color="orange"
icon="mdi-fire"
/>
@invictus.codes/nuxt-vuetify by <a href="https://invictus.codes">
invictus.codes
<v-icon icon="mdi-home" size="12" />
</a>
</div>
</v-sheet>
</v-col>
</v-row>
<v-row>
<v-col>
<v-sheet class="pa-4 d-flex align-center flex-column">
Storybook <v-icon
color="pink"
icon="mdi-heart"
/> Nuxt
</v-sheet>
</v-col>
<v-col>
<v-sheet class="pa-4 d-flex justify-space-between flex-row">
Storybook <v-icon
color="pink"
icon="mdi-heart"
/> Nuxt
</v-sheet>
</v-col>
<v-col>
<v-sheet class="pa-4 d-flex align-center flex-column">
Storybook <v-icon
color="pink"
icon="mdi-heart"
/> Nuxt
</v-sheet>
</v-col>
</v-row>
</v-container>
</template>