primevue-mirror/apps/volt/doc/textarea/ImportDoc.vue

12 lines
228 B
Vue
Raw Normal View History

2025-03-01 14:43:15 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
2025-03-05 18:34:27 +00:00
<script setup>
import { ref } from 'vue';
const code = ref(`import Textarea from '@/volt/textarea';
`);
2025-03-01 14:43:15 +00:00
</script>