refactor: template changes to implement new CCard syntax

This commit is contained in:
woothu
2019-03-05 11:19:23 +01:00
parent 7e3646e438
commit 403122ddfb
36 changed files with 2725 additions and 2895 deletions
+14 -14
View File
@@ -1,21 +1,21 @@
<template>
<CRow>
<CCol cols="12"
lg="6"
>
<CCard no-header>
<template slot="header">
<CCol cols="12" lg="6">
<CCard>
<CCardHeader>
User id: {{ $route.params.id }}
</template>
<CTable striped
small
fixed
:items="items($route.params.id)"
:fields="$options.fields"
/>
<template slot="footer">
</CCardHeader>
<CCardBody>
<CTable striped
small
fixed
:items="items($route.params.id)"
:fields="$options.fields"
/>
</CCardBody>
<CCardFooter>
<CButton @click="goBack">Back</CButton>
</template>
</CCardFooter>
</CCard>
</CCol>
</CRow>