primevue-mirror/doc/animateonscroll/ImportDoc.vue

21 lines
427 B
Vue
Raw Normal View History

<template>
<DocSectionText v-bind="$attrs" />
<DocSectionCode :code="code" hideToggleCode importCode hideCodeSandbox hideStackBlitz />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
2023-10-24 13:45:38 +00:00
import AnimateOnScroll from 'primevue/animateonscroll';
2023-10-24 13:45:38 +00:00
app.directive('animateonscroll', AnimateOnScroll);
`
}
};
}
};
</script>