@raclettejs/workbench 0.1.10 → 0.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,40 +1,38 @@
1
1
  <template>
2
- <v-container class="tw:py-8">
3
- <v-row>
4
- <v-col cols="12">
5
- <v-card flat>
6
- <v-card-title>
7
- 🧀
8
- {{ $t("workbench.welcomeScreen.title") }}
9
- </v-card-title>
10
- </v-card>
11
- <v-card-text>
12
- <v-list density="compact" disabled>
13
- <v-list-subheader
14
- ><h3>
15
- {{ $t("workbench.welcomeScreen.whatIsWhat") }}
16
- </h3></v-list-subheader
17
- >
2
+ <v-row>
3
+ <v-col cols="12">
4
+ <v-card flat>
5
+ <v-card-title>
6
+ 🧀
7
+ {{ $t("workbench.welcomeScreen.title") }}
8
+ </v-card-title>
9
+ </v-card>
10
+ <v-card-text>
11
+ <v-list density="compact" disabled>
12
+ <v-list-subheader
13
+ ><h3>
14
+ {{ $t("workbench.welcomeScreen.whatIsWhat") }}
15
+ </h3></v-list-subheader
16
+ >
18
17
 
19
- <v-list-item
20
- v-for="(item, i) in whatIsWhatItems"
21
- :key="i"
22
- :value="item"
23
- color="primary"
24
- >
25
- <template #prepend>
26
- <v-icon :icon="item.icon"></v-icon>
27
- </template>
18
+ <v-list-item
19
+ v-for="(item, i) in whatIsWhatItems"
20
+ :key="i"
21
+ :value="item"
22
+ color="primary"
23
+ >
24
+ <template #prepend>
25
+ <v-icon :icon="item.icon"></v-icon>
26
+ </template>
28
27
 
29
- <v-list-item-title>
30
- {{ $t("workbench.welcomeScreen." + item.i18nKey) }}
31
- </v-list-item-title>
32
- </v-list-item>
33
- </v-list>
34
- </v-card-text>
35
- </v-col>
36
- </v-row>
37
- </v-container>
28
+ <v-list-item-title>
29
+ {{ $t("workbench.welcomeScreen." + item.i18nKey) }}
30
+ </v-list-item-title>
31
+ </v-list-item>
32
+ </v-list>
33
+ </v-card-text>
34
+ </v-col>
35
+ </v-row>
38
36
  </template>
39
37
 
40
38
  <script setup lang="ts">