-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.vue
62 lines (57 loc) · 1.17 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
57
58
59
60
61
62
<script setup lang="ts" generic="T extends any, O extends any">
defineOptions({
name: 'IndexPage',
})
const exerciseList = [
{
name: '无限评论',
path: '/finite-comment',
},
{
name: '字体阴影',
path: '/font-shadow',
},
{
name: '九宫格',
path: '/sudoku',
},
{
name: '音频可视化',
path: '/audio-visual',
},
{
name: 'UI组件封装',
path: '/ui-component',
},
{
name: '静态资源动态导入',
path: '/dynamic-resource-import',
},
].reverse()
const router = useRouter()
function go(path: string) {
router.push(`/exercise${path}`)
}
</script>
<template>
<div mx-a text-center>
<div i-carbon-campsite text-4xl inline-block />
<p>
<a rel="noreferrer" href="https://github.com/antfu/vitesse-lite" target="_blank">
Vitesse Lite Exercise
</a>
</p>
<p>
<em text-sm op75>Opinionated Vite Starter Template</em>
</p>
<div flex flex-wrap flex-1>
<button
v-for="item in exerciseList" :key="item.name"
class="m-3 text-md btn"
@click="go(item.path)"
>
{{ item.name }}
</button>
</div>
</div>
</template>