chore: 3.0.0-beta.0 release: update dependencies

This commit is contained in:
woothu
2019-11-19 17:40:48 +01:00
parent c4a941d714
commit f020186152
101 changed files with 19230 additions and 26476 deletions
+24 -19
View File
@@ -1,23 +1,28 @@
<template>
<CCard :header="caption" body-wrapper>
<CTable
:hover="hover"
:striped="striped"
:bordered="bordered"
:small="small"
:fixed="fixed"
:items="items"
:fields="fields"
:items-per-page="small ? 10 : 5"
:dark="dark"
pagination
>
<template #status="{item}">
<td>
<CBadge :color="getBadge(item.status)">{{item.status}}</CBadge>
</td>
</template>
</CTable>
<CCard>
<CCardHeader>
<CIcon name="cil-justify-center"/> {{caption}}
</CCardHeader>
<CCardBody>
<CDataTable
:hover="hover"
:striped="striped"
:bordered="bordered"
:small="small"
:fixed="fixed"
:items="items"
:fields="fields"
:items-per-page="small ? 10 : 5"
:dark="dark"
pagination
>
<template #status="{item}">
<td>
<CBadge :color="getBadge(item.status)">{{item.status}}</CBadge>
</td>
</template>
</CDataTable>
</CCardBody>
</CCard>
</template>