primevue-mirror/doc/badge/ImportDoc.vue

25 lines
496 B
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs"></DocSectionText>
2023-02-28 17:40:48 +00:00
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
2023-02-28 08:29:30 +00:00
</template>
<script>
export default {
data() {
return {
code: {
2023-09-22 12:54:14 +00:00
basic: `
// import as component
2023-02-28 08:29:30 +00:00
import Badge from 'primevue/badge';
// import as directive
import BadgeDirective from 'primevue/badgedirective';
2023-09-22 12:54:14 +00:00
app.directive('badge', BadgeDirective);
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>