-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaside.vue
45 lines (39 loc) · 849 Bytes
/
aside.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
<template lang="pug">
aside
ul
li
nuxt-link(to='/admin') 爬虫
li
nuxt-link(to='/admin/characters') 主要演员
li
nuxt-link(to='/admin/houses') 九大家族
li
nuxt-link(to='/admin/related-products') 周边
li
nuxt-link(to='/admin/payments') 订单
</template>
<style lang='sass'>
aside
width: 230px
height: calc(100vh - 56px)
overflow: scroll
padding-top: 20px
ul
list-style: none
padding: 0
a
display: block
font-size: 14px
height: 40px
line-height: 40px
padding-left: 40px
color: #666
text-decoration: none
&:hover
background-color: rgba(0,0,0,.05)
text-decoration: none
&.nuxt-link-exact-active
font-weight: 500
color: #222
background-color: rgba(0,0,0,.05)
</style>