feature: link about in setting

This commit is contained in:
SRP-mango 2023-08-21 18:14:03 +07:00
parent 84dee0de88
commit e62cf664da

View file

@ -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',}
]