0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-22 19:25:16 +00:00

feat: Expandable Description

as per issue #127

#127
This commit is contained in:
Front 2022-03-20 09:17:26 -04:00
parent ba690a9d1a
commit d0079ca4f8

View file

@ -16,13 +16,23 @@
<div v-text="item.value || item.name" />
</button>
</v-list-item>
<v-btn @click="showMore = !showMore"><v-icon>mdi-chevron-down</v-icon></v-btn>
</div>
<!-- End Scrolling Div For Interactions --->
</v-card-text>
<p>{{ description }}</p>
<v-bottom-sheet v-model="showMore" color="accent2">
<v-sheet>
<v-btn @click="showMore = !showMore"><v-icon>mdi-chevron-up</v-icon></v-btn>
{{ description }}
</v-sheet>
</v-bottom-sheet>
</v-card>
<recommended />
@ -50,6 +60,7 @@ export default {
{ name: "Dislikes", icon: "mdi-thumb-down", action: null, value: this.dislikes, disabled: true },
{ name: "Share", icon: "mdi-share", action: null, disabled: true },
],
showMore: false,
title: null,
likes: 100,