-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.vue
42 lines (40 loc) · 1.13 KB
/
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
40
41
42
<template>
<div :style="{ padding: '4rem' }">
<a-config-provider>
<!-- <a-row justify="space-between">
<a-typography-title :level="3">
Wellcome to {{ dp.name }}
</a-typography-title>
</a-row> -->
<!-- <a-card title="Dependencies" size="small" style="margin-bottom: 30px">
<a-space wrap>
<a-tag
v-for="(val, key, ind) of allDp"
:key="key"
:color="ind % 2 ? 'orange' : 'magenta'"
style="cursor: pointer"
>
<NuxtLink
:to="`https://www.npmjs.com/package/${key}`"
target="_blank"
>
<span
style="font-weight: bold"
:style="{
color: 'rgb(65, 78, 112)',
}"
>
{{ key }}:
</span>
{{ val }}
</NuxtLink>
</a-tag>
</a-space>
</a-card> -->
<NuxtPage />
</a-config-provider>
</div>
</template>
<script setup lang="ts">
// const allDp = _Omit({ ...dp.dependencies, ...dp.devDependencies }, "serve");
</script>