IVM
MO
DI
MI
DO
FR
SA
SO
#1‑1
#1‑2
#1‑3
#1‑4
#1‑5
#1‑6
#1‑7
#2‑1
#2‑2
#2‑3
#2‑4
#2‑5
#2‑6
#2‑7
#3‑1
#3‑2
#3‑3
#3‑4
#3‑5
#3‑6
#3‑7
#4‑1
#4‑2
#4‑3
#4‑4
#4‑5
#4‑6
#4‑7
#5‑1
#5‑2
#5‑3
#5‑4
#5‑5
#5‑6
#5‑7
About
kdqlknqekf+ qw fd +qefwefwefwefrwfre
wewibweibfwe f d,flwefew
Footnotes
direct entry[1] of the footnote
Here is a footnote reference,[2] and another.[3]
sldefmwef
defwefwfwfe
sdwefewf
123
bla bla bla
<template>
<div class="center">
<CButton
color="primary"
:active="active == 0"
@click="active = 0"
>Primary
</CButton>
<CButton color="secondary" disabled>Secondary</CButton>
<CButton color="success">Success</CButton>
</div>
<div class="center">
Container
<CContainer>
<CRow>
<CCol sm="auto">
One of three columns
</CCol>
<CCol sm="auto">
One of three columns
</CCol>
<CCol sm="auto">
One of three columns
</CCol>
</CRow>
</CContainer>
End container 1
<CContainer>
<CRow class="row row-cols-1 row-cols-md-3 row-cols-lg-5 g-2 g-lg-3">
<!--
class="gx-5 gy-5" :xs="{ cols: 1 , gutter: 2 }" :sm="{ cols: 2 }" :md="{ cols: 3 }">
-->
<CCol :sm="{ span: 6 }">
<div class="p-3 border bg-light">Custom column padding</div>
</CCol>
<CCol :sm="{ span: 6 }">
<div class="p-3 border bg-light">Custom column padding</div>
</CCol>
<CCol :sm="{ span: 6 }">
<div class="p-3 border bg-light">Custom column padding</div>
</CCol>
<CCol :sm="{ span: 6 }">
<div class="p-3 border bg-light">Custom column padding</div>
</CCol>
</CRow>
</CContainer>
End container 2
</div>
</template>
<script>
// https://coreui.io/vue/docs/components/button.html
import { CButton } from '@coreui/vue'
import { CContainer, CCol, CRow } from '@coreui/vue'
// or
//import CButton from '@coreui/vue/src/components/button/CButton'
import '@coreui/coreui/dist/css/coreui.min.css'
export default {
data:() => ({
active: 0
}),
components: {
CButton,
CContainer, CCol, CRow,
}
}
</script>
123