2025-03-01 14:43:15 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs" />
|
|
|
|
<DocSectionCode :code="code" lang="script" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2025-03-03 15:43:42 +00:00
|
|
|
code: `import Textarea from '@/volt/textarea';
|
2025-03-01 14:43:15 +00:00
|
|
|
`
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|