vue-scroll-reveal icon indicating copy to clipboard operation
vue-scroll-reveal copied to clipboard

vue-scroll-reveal not working

Open GustavoSantos13 opened this issue 3 years ago • 0 comments

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');

GustavoSantos13 avatar Mar 11 '22 04:03 GustavoSantos13