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

12 lines
236 B
Vue
Raw Normal View History

2025-02-28 11:49:42 +00:00
<template>
<DocSectionText v-bind="$attrs" />
2025-02-28 22:59:25 +00:00
<DocSectionCode :code="code" lang="script" />
2025-02-28 11:49:42 +00:00
</template>
2025-03-05 18:34:27 +00:00
<script setup>
import { ref } from 'vue';
const code = ref(`import SelectButton from '@/volt/selectbutton';
`);
2025-02-28 11:49:42 +00:00
</script>