2025-03-05 14:26:30 +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 Divider from '@/volt/divider';
|
|
|
|
`);
|
2025-03-05 14:26:30 +00:00
|
|
|
</script>
|