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

13 lines
270 B
Vue
Raw Normal View History

2025-03-05 18:28:46 +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 Badge from '@/volt/badge';
2025-03-05 18:28:46 +00:00
import OverlayBadge from '@/volt/overlaybadge';
2025-03-05 18:34:27 +00:00
`);
2025-03-05 18:28:46 +00:00
</script>