Demo update
parent
309808307f
commit
8890bd7655
|
@ -194,10 +194,11 @@ export default {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-multiselect {
|
.p-filter-column {
|
||||||
width: 100%;
|
.p-multiselect, .p-dropdown, .p-inputtext {
|
||||||
}
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
.p-dropdown-car-option {
|
.p-dropdown-car-option {
|
||||||
img {
|
img {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
<div class="content-section implementation">
|
<div class="content-section implementation">
|
||||||
<DataTable :value="cars">
|
<DataTable :value="cars">
|
||||||
<template #header>
|
<template #header>
|
||||||
<div style="line-height:1.87em" class="clearfix">
|
<div class="table-header">
|
||||||
<Button icon="pi pi-refresh" style="float: left"/>
|
|
||||||
List of Cars
|
List of Cars
|
||||||
|
<Button icon="pi pi-refresh" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<Column field="vin" header="Vin"></Column>
|
<Column field="vin" header="Vin"></Column>
|
||||||
|
@ -122,4 +122,12 @@ export default {
|
||||||
'DataTableSubMenu': DataTableSubMenu
|
'DataTableSubMenu': DataTableSubMenu
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.table-header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue