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

12 lines
222 B
Vue
Raw Normal View History

2025-03-05 10:08:59 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" lang="script" />
</template>
<script setup>
import { ref } from 'vue';
const code = ref(`import Panel from '@/volt/panel';
`);
</script>