Skip to content

Commit 3cb9c10

Browse files
Fix formatting
1 parent 29c7374 commit 3cb9c10

File tree

3 files changed

+44
-53
lines changed

3 files changed

+44
-53
lines changed

src/documentation/sections/DependenciesSection.vue

Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,29 @@
1111
>#</a>
1212
Dependencies
1313
</h2>
14+
</v-col>
1415

15-
<v-row>
16-
<v-col cols="12">
17-
<a
18-
:href="store.links.vuetify"
19-
target="_blank"
20-
>
21-
Vuetify v3
22-
</a>
23-
<br />
24-
<a
25-
:href="store.links.vue"
26-
target="_blank"
27-
>
28-
Vue 3
29-
</a>
30-
<br />
31-
<a
32-
:href="store.links.vueUse"
33-
target="_blank"
34-
>
35-
VueUse
36-
</a>
37-
</v-col>
38-
</v-row>
16+
<v-col cols="12">
17+
<a
18+
:href="store.links.vuetify"
19+
target="_blank"
20+
>
21+
Vuetify v3
22+
</a>
23+
<br />
24+
<a
25+
:href="store.links.vue"
26+
target="_blank"
27+
>
28+
Vue 3
29+
</a>
30+
<br />
31+
<a
32+
:href="store.links.vueUse"
33+
target="_blank"
34+
>
35+
VueUse
36+
</a>
3937
</v-col>
4038
</v-row>
4139
</template>

src/documentation/sections/LegalSection.vue

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,13 @@
1111
>#</a>
1212
Legal
1313
</h2>
14+
</v-col>
1415

15-
<v-row>
16-
<v-col cols="12">
17-
<p>
18-
Vuetify and the Vuetify logo are trademarks of Vuetify LLC. This
19-
component was not created or endorsed by Vuetify.
20-
</p>
21-
</v-col>
22-
</v-row>
16+
<v-col cols="12">
17+
<p>
18+
Vuetify and the Vuetify logo are trademarks of Vuetify LLC. This
19+
component was not created or endorsed by Vuetify.
20+
</p>
2321
</v-col>
2422
</v-row>
2523
</template>

src/documentation/sections/LicenseSection.vue

Lines changed: 16 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,29 @@
1111
>#</a>
1212
License
1313
</h2>
14+
</v-col>
1415

15-
<v-row>
16-
<v-col cols="12">
17-
Copyright &copy; {{ new Date().getFullYear() }}
18-
<a
19-
:href="store.links.githubProfile"
20-
target="_blank"
21-
>WebDevNerdStuff</a>
22-
<br />
23-
Licensed under the
24-
<a
25-
:href="`${store.links.github}/blob/master/LICENSE.md`"
26-
target="_blank"
27-
>
28-
MIT License
29-
</a>
30-
</v-col>
31-
</v-row>
16+
<v-col cols="12">
17+
Copyright &copy; {{ new Date().getFullYear() }}
18+
<a
19+
:href="links.github"
20+
target="_blank"
21+
>WebDevNerdStuff</a>
22+
<br />
23+
Licensed under the
24+
<a
25+
:href="`${links.repo}/blob/master/LICENSE.md`"
26+
target="_blank"
27+
>
28+
MIT License
29+
</a>
3230
</v-col>
3331
</v-row>
3432
</template>
3533

3634
<script setup>
3735
import { inject } from 'vue';
38-
import { useCoreStore } from '@/stores/index';
39-
4036
4137
const classes = inject('classes');
42-
43-
const store = useCoreStore();
38+
const links = inject('links');
4439
</script>

0 commit comments

Comments
 (0)