18 lines
728 B
HTML
18 lines
728 B
HTML
<v-navigation-drawer v-model="drawer" absolute temporary>
|
|
<v-list nav dense>
|
|
<v-list-item-group active-class="deep-purple--text text--accent-4">
|
|
<v-list-item href="/">
|
|
<v-list-item-icon>
|
|
<v-icon>mdi-home</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>首页</v-list-item-title>
|
|
</v-list-item>
|
|
<v-list-item href="/diary">
|
|
<v-list-item-icon>
|
|
<v-icon>mdi-notebook</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>正经人谁写日记</v-list-item-title>
|
|
</v-list-item>
|
|
</v-list-item-group>
|
|
</v-list>
|
|
</v-navigation-drawer> |