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

16 lines
268 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>
<script>
export default {
data() {
return {
2025-03-03 15:43:42 +00:00
code: `import SelectButton from '@/volt/selectbutton';
2025-02-28 11:49:42 +00:00
`
};
}
};
</script>