mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-21 18:56:51 +00:00
Add problem reporting buttons in about page
This commit is contained in:
parent
cea70a1d42
commit
f13ecf92ab
1 changed files with 30 additions and 0 deletions
|
@ -35,6 +35,24 @@
|
|||
<v-list-item-title v-text="item.text"></v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
|
||||
<v-list class = "ma-2" density="compact">
|
||||
<v-list-subheader>รายงานปัญหาและข้อเสนอแนะ</v-list-subheader>
|
||||
|
||||
<v-list-item
|
||||
v-for="(item, i) in report_items"
|
||||
:key="i"
|
||||
:value="item"
|
||||
:href="item.link"
|
||||
>
|
||||
<template v-slot:append>
|
||||
<!-- <v-icon :icon="item.icon"></v-icon> -->
|
||||
<img src="../../icons/Adwaita/right.svg">
|
||||
</template>
|
||||
|
||||
<v-list-item-title v-text="item.text"></v-list-item-title>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-sheet>
|
||||
|
||||
|
||||
|
@ -53,6 +71,18 @@ import {RouterLink} from 'vue-router';
|
|||
icon: 'mdi-chevron-right',}
|
||||
]
|
||||
|
||||
const report_items = [
|
||||
{ text: 'Discord',
|
||||
icon: 'mdi-chevron-right',
|
||||
link: 'https://discord.gg/6aPemyuSzx'},
|
||||
{ text: 'Facebook',
|
||||
icon: 'mdi-chevron-right',
|
||||
link: 'https://www.facebook.com/openKMITL'},
|
||||
{ text: 'Google Forms',
|
||||
icon: 'mdi-chevron-right',
|
||||
link: 'https://forms.google.com'},
|
||||
]
|
||||
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
|
Loading…
Reference in a new issue