This commit is contained in:
2020-02-17 22:49:51 +00:00
parent 1fa2f78cef
commit e4a782773f

View File

@@ -1,5 +1,23 @@
<template> <template>
<div> <div>
<v-card>
<v-card-title>
<v-select
:items="[
{ name: 'one', id: 1 },
{ name: 'two', id: 2 }
]"
item-text="name"
item-value="id"
:label="lt('DataListView')"
>
</v-select>
<v-spacer></v-spacer
><v-btn>
<v-icon>fa-filter</v-icon>
</v-btn>
</v-card-title>
<!-- WIDE TABLE VIEW --> <!-- WIDE TABLE VIEW -->
<template v-if="!narrowFormat"> <template v-if="!narrowFormat">
<v-data-table <v-data-table
@@ -172,7 +190,11 @@
<v-divider></v-divider> <v-divider></v-divider>
</template> </template>
<v-list dense> <v-list dense>
<v-list-item two-line v-for="c in item.columns" :key="c.key"> <v-list-item
two-line
v-for="c in item.columns"
:key="c.key"
>
<v-list-item-content> <v-list-item-content>
<v-list-item-title> <v-list-item-title>
{{ getHeaderText(c.key) }}</v-list-item-title {{ getHeaderText(c.key) }}</v-list-item-title
@@ -260,6 +282,7 @@
</template> </template>
</v-data-iterator> </v-data-iterator>
</template> </template>
</v-card>
</div> </div>
</template> </template>