refacor: update dashboard to coreui-vue changes

This commit is contained in:
woothu
2019-11-08 12:50:42 +01:00
parent cb5f6ec3a2
commit 1c7b133ae5
42 changed files with 549 additions and 4034 deletions
+4 -4
View File
@@ -190,13 +190,13 @@
</CCol>
<CCol sm="9" :class="key % 2 === 1 ? 'form-inline' : ''">
<CInputCheckbox
v-for="option in options"
:key="option"
v-for="(option, optionIndex) in options"
:key="key + option"
:label="option"
:value="option"
:custom="key > 1"
:name="`Option 1${key}`"
:checked="Math.random() > 0.6"
:checked="optionIndex === key"
:inline="key % 2 === 1"
/>
</CCol>
@@ -210,7 +210,7 @@
<CCol sm="9" :class="key % 2 === 1 ? 'form-inline' : ''">
<CInputRadio
v-for="(option, optionIndex) in options"
:key="option"
:key="key + option"
:label="option"
type="radio"
:value="option"