1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-08 16:37:15 +00:00
primevue-mirror/doc/tooltip/ImportDoc.vue
Tuğçe Küçükoğlu c6fba7f4e2 Remove extra lines
2023-03-02 15:23:54 +03:00

18 lines
377 B
Vue

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