mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-22 11:56:51 +00:00
feature: link about in setting
This commit is contained in:
parent
84dee0de88
commit
e62cf664da
1 changed files with 4 additions and 1 deletions
|
@ -75,6 +75,7 @@
|
|||
v-for="(item, i) in about_items"
|
||||
:key="i"
|
||||
:value="item"
|
||||
:to="{name: 'about'}"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<v-icon :icon="item.icon"></v-icon>
|
||||
|
@ -98,6 +99,8 @@
|
|||
|
||||
<script setup>
|
||||
|
||||
import {RouterLink} from 'vue-router';
|
||||
|
||||
const account_items = [
|
||||
{ text: 'ตั้งค่าบัญชี',icon: 'mdi-chevron-right'},
|
||||
|
||||
|
@ -113,7 +116,7 @@ const display_items = [
|
|||
]
|
||||
|
||||
const about_items = [
|
||||
{ text: 'เกี่ยวกับ',icon: 'mdi-chevron-right'},
|
||||
{ text: 'เกี่ยวกับ',icon: 'mdi-chevron-right',}
|
||||
]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue