primevue-mirror/doc/radiobutton/ImportDoc.vue

17 lines
345 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode import hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `import RadioButton from 'primevue/radiobutton';`
}
};
}
};
</script>