forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHideBottom.vue
More file actions
126 lines (117 loc) · 2.37 KB
/
HideBottom.vue
File metadata and controls
126 lines (117 loc) · 2.37 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<template>
<div class="q-pa-md">
<div class="row items-center q-gutter-sm q-mb-md">
<q-toggle label="Fill with data" v-model="hasData" />
<q-toggle label="Hide no data" v-model="hideNoData" />
<q-toggle label="Hide bottom layer" v-model="hideBottom" />
<q-toggle label="Hide pagination" v-model="hidePagination" />
<q-toggle label="Hide selected rows banner" v-model="hideSelectedBanner" />
</div>
<q-table
title="Treats"
:rows="records"
:columns="columns"
row-key="name"
selection="multiple"
v-model:selected="selected"
:hide-bottom="hideBottom"
:hide-selected-banner="hideSelectedBanner"
:hide-no-data="hideNoData"
:hide-pagination="hidePagination"
/>
</div>
</template>
<script>
import { ref, computed } from 'vue'
const columns = [
{
name: 'name',
required: true,
label: 'Dessert (100g serving)',
align: 'left',
field: row => row.name,
format: val => `${val}`,
sortable: true
},
{ name: 'calories', align: 'center', label: 'Calories', field: 'calories', sortable: true },
{ name: 'fat', label: 'Fat (g)', field: 'fat', sortable: true },
{ name: 'carbs', label: 'Carbs (g)', field: 'carbs' }
]
const rows = [
{
name: 'Frozen Yogurt',
calories: 159,
fat: 6.0,
carbs: 24
},
{
name: 'Ice cream sandwich',
calories: 237,
fat: 9.0,
carbs: 37
},
{
name: 'Eclair',
calories: 262,
fat: 16.0,
carbs: 23
},
{
name: 'Cupcake',
calories: 305,
fat: 3.7,
carbs: 67
},
{
name: 'Gingerbread',
calories: 356,
fat: 16.0,
carbs: 49
},
{
name: 'Jelly bean',
calories: 375,
fat: 0.0,
carbs: 94
},
{
name: 'Lollipop',
calories: 392,
fat: 0.2,
carbs: 98
},
{
name: 'Honeycomb',
calories: 408,
fat: 3.2,
carbs: 87
},
{
name: 'Donut',
calories: 452,
fat: 25.0,
carbs: 51
},
{
name: 'KitKat',
calories: 518,
fat: 26.0,
carbs: 65
}
]
export default {
setup () {
const hasData = ref(true)
return {
hasData,
hideBottom: ref(false),
hideSelectedBanner: ref(false),
hideNoData: ref(false),
hidePagination: ref(false),
selected: ref([rows[ 1 ]]),
columns,
records: computed(() => hasData.value === true ? rows : [])
}
}
}
</script>