refactor: migrate to <script setup>

This commit is contained in:
mrholek
2024-04-29 13:51:42 +02:00
parent 86a084aa4f
commit 43745d958a
63 changed files with 1056 additions and 1754 deletions
+2 -8
View File
@@ -47,7 +47,7 @@
</p>
<DocsExample href="forms/range.html#min-and-max">
<CFormLabel for="customRange2">Example range</CFormLabel>
<CFormRange id="customRange2" :min="0" :max="5" value="3" />
<CFormRange id="customRange2" :min="0" :max="5" :value="3" />
</DocsExample>
</CCardBody>
</CCard>
@@ -71,7 +71,7 @@
:min="0"
:max="5"
:step="0.5"
value="3"
:value="3"
/>
</DocsExample>
</CCardBody>
@@ -79,9 +79,3 @@
</CCol>
</CRow>
</template>
<script>
export default {
name: 'Range',
}
</script>