2025-02-28 11:49:42 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs" />
|
2025-02-28 22:59:25 +00:00
|
|
|
<DocSectionCode :code="code" lang="script" />
|
2025-02-28 11:49:42 +00:00
|
|
|
</template>
|
|
|
|
|
2025-03-05 18:34:27 +00:00
|
|
|
<script setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
const code = ref(`import RadioButton from '@/volt/radiobutton';
|
|
|
|
`);
|
2025-02-28 11:49:42 +00:00
|
|
|
</script>
|