1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/doc/togglebutton/ImportDoc.vue
2023-09-22 15:54:14 +03:00

18 lines
353 B
Vue

<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import ToggleButton from 'primevue/togglebutton';
`
}
};
}
};
</script>