I imported the library into my project but when I activated the library using Vue.use I got this error "Uncaught TypeError: undefined is not a non-null object"
I didn't do any configuration I just activated the library and got this error.
my code:
import { createApp } from 'vue';
import App from './App.vue'
import VueScrollReveal from 'vue-scroll-reveal';
let myApp = createApp(App);
myApp.use(VueScrollReveal);
myApp.mount('#app');
I imported the library into my project but when I activated the library using Vue.use I got this error "Uncaught TypeError: undefined is not a non-null object"
I didn't do any configuration I just activated the library and got this error.
my code: