primevue-mirror/doc/metergroup/ImportDoc.vue

19 lines
349 B
Vue
Raw Normal View History

2024-01-11 13:46:09 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import MeterGroup from 'primevue/metergroup';
`
}
};
}
};
</script>