forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeamless.vue
More file actions
36 lines (30 loc) · 868 Bytes
/
Seamless.vue
File metadata and controls
36 lines (30 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
<div class="q-pa-md q-gutter-sm">
<q-btn label="Click Me" color="primary" @click="seamless = true" />
<q-dialog v-model="seamless" seamless position="bottom">
<q-card style="width: 350px">
<q-linear-progress :value="0.6" color="pink" />
<q-card-section class="row items-center no-wrap">
<div>
<div class="text-weight-bold">The Walker</div>
<div class="text-grey">Fitz & The Tantrums</div>
</div>
<q-space />
<q-btn flat round icon="play_arrow" />
<q-btn flat round icon="pause" />
<q-btn flat round icon="close" v-close-popup />
</q-card-section>
</q-card>
</q-dialog>
</div>
</template>
<script>
import { ref } from 'vue'
export default {
setup () {
return {
seamless: ref(false)
}
}
}
</script>