-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.vue
32 lines (32 loc) · 989 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
<template>
<div>
<n-result status="success" title="succss" description="Naive-ui + Nuxt3">
<template #footer>
<n-space justify="center">
<n-button type="success">Naive-ui</n-button>
<n-button type="success" secondary>+</n-button>
<n-button type="success">Nuxt rc1</n-button>
</n-space>
</template>
</n-result>
<n-space>
<n-button type="primary">naive-ui</n-button>
<n-button type="info">naive-ui</n-button>
<n-button type="warning">naive-ui</n-button>
</n-space>
<n-h2>Tooltip demo</n-h2>
<n-tooltip trigger="hover">
<template #trigger>
<n-button>Button</n-button>
</template>
Fairly Complete, Theme Customizable, Uses TypeScript, Fast Kinda Interesting
</n-tooltip>
<n-h1>特点</n-h1>
<n-space>
<n-tag>Nuxt3</n-tag>
<n-tag>Vite</n-tag>
<n-tag>Naive-ui</n-tag>
<n-tag>SEO friendly</n-tag>
</n-space>
</div>
</template>