refactor: small refactors

This commit is contained in:
woothu
2020-02-17 11:21:33 +01:00
parent 6d530f74ee
commit 0493a99c31
2 changed files with 11 additions and 16 deletions
+1 -1
View File
@@ -97,7 +97,7 @@ Have a bug or a feature request? [Please open a new issue](https://github.com/co
### Contributing ### Contributing
Please read through our [contributing guidelines](https://github.com/coreui/coreui-free-vue-admin-template/blob/v3-next/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development. Please read through our [contributing guidelines](https://github.com/coreui/coreui-free-vue-admin-template/blob/v3-next/.github/CONTRIBUTING.md). Included are directions for opening issues, coding standards, and notes on development.
### Versioning ### Versioning
+10 -15
View File
@@ -30,17 +30,19 @@
<small>icons</small> <small>icons</small>
</CCardHeader> </CCardHeader>
<CCardBody> <CCardBody>
<CNav> <CNav variant="pills">
<CNavItem active> <CNavItem active>
<CIcon name="cil-basket"/> <CIcon name="cil-basket"/>
</CNavItem> </CNavItem>
<CNavItem> <CNavItem>
Link <CIcon name="cil-settings"/>
</CNavItem> </CNavItem>
<CNavItem> <CNavItem>
Another Link <CIcon name="cil-bell"/>
</CNavItem>
<CNavItem disabled>
<CIcon name="cil-envelope-closed"/>
</CNavItem> </CNavItem>
<CNavItem disabled>Disabled</CNavItem>
</CNav> </CNav>
</CCardBody> </CCardBody>
</CCard> </CCard>
@@ -117,16 +119,14 @@
<small>dropdown support</small> <small>dropdown support</small>
</CCardHeader> </CCardHeader>
<CCardBody> <CCardBody>
<CNav pills> <CNav variant="pills">
<CNavItem active>Active</CNavItem> <CNavItem>Active</CNavItem>
<CNavItem>Link</CNavItem> <CNavItem>Link</CNavItem>
<CDropdown <CDropdown
id="nav7_ddown" in-nav
nav
placement="bottom-end" placement="bottom-end"
button-content="Dropdown" button-content="Dropdown"
> >
<!-- <a class="nav-link dropdown-toggle" slot="button">Dropdown</a> -->
<CDropdownItem>one</CDropdownItem> <CDropdownItem>one</CDropdownItem>
<CDropdownItem>two</CDropdownItem> <CDropdownItem>two</CDropdownItem>
<CDropdownDivider/> <CDropdownDivider/>
@@ -159,11 +159,6 @@
<script> <script>
export default { export default {
name: 'Navs', name: 'Navs'
data () {
return {
item: 2
}
}
} }
</script> </script>