primevue-mirror/apps/showcase/doc/fluid/ImportDoc.vue

19 lines
323 B
Vue
Raw Normal View History

2024-07-26 11:20:45 +00:00
<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
import Fluid from 'primevue/fluid';
`
}
};
}
};
</script>