40 lines
1.1 KiB
Vue
40 lines
1.1 KiB
Vue
<template>
|
|
<div>
|
|
<CCard>
|
|
<CCardHeader>
|
|
<i class="cui-globe"></i>Font Awesome brand icons
|
|
</CCardHeader>
|
|
<CCardBody>
|
|
<CRow class="c-text-center">
|
|
<CCol class="c-mb-5" col="12">
|
|
<!-- For using the flags inline with text add the classes
|
|
<code>.flag-icon</code> and <code>.flag-icon-xx</code>
|
|
(where xx is the ISO 3166-1-alpha-2 code of a country) to an empty
|
|
span. If you want to have a squared version flag then add the class
|
|
flag-icon-squared as well. -->
|
|
</CCol>
|
|
<template v-for="(brand, brandName) in $options.brands">
|
|
<CCol
|
|
class="c-mb-5"
|
|
col="3"
|
|
sm="2"
|
|
:key="brandName"
|
|
>
|
|
<CIcon :height="42" :content="$options.brands[brandName]"/>
|
|
<div>{{brandName}}</div>
|
|
</CCol>
|
|
</template>
|
|
</CRow>
|
|
</CCardBody>
|
|
</CCard>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { iconSet as brands } from '@coreui/icons/brands'
|
|
export default {
|
|
name: 'Brands',
|
|
brands
|
|
}
|
|
</script>
|