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

17 lines
261 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>
<script>
export default {
data() {
return {
code: `
2025-03-03 12:50:58 +00:00
import Textarea from '@/volt/textarea';
2025-03-01 14:43:15 +00:00
`
};
}
};
</script>