primevue-mirror/apps/volt/doc/togglebutton/ImportDoc.vue
2025-03-26 15:43:43 +03:00

11 lines
250 B
Vue

<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script setup lang="ts">
import { ref } from 'vue';
const code = ref(`import ToggleButton from '@/volt/ToggleButton.vue';
`);
</script>