1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

refactor: improved structure of connection core

This commit is contained in:
2020-09-17 17:58:12 +02:00
parent 4991291c2c
commit 5334a44271
8 changed files with 309 additions and 349 deletions

View File

@ -29,6 +29,7 @@
v-for="(field, index) in fields"
:key="index"
class="th c-hand"
:title="field.comment ? field.comment : false"
>
<div ref="columnResize" class="column-resizable">
<div class="table-column-title" @click="sort(field.name)">
@ -38,7 +39,7 @@
:class="`key-${field.key}`"
:title="keyName(field.key)"
/>
<span :title="field.comment ? field.comment : false">{{ field.alias || field.name }}</span>
<span>{{ field.alias || field.name }}</span>
<i
v-if="currentSort === field.name"
class="mdi sort-icon"