Hello,
I am encountering an issue when trying to use VueProgressBar with Vue. I am getting the error message o is not a constructor. Here is my code:
`import { createApp } from 'vue';
const app = createApp({});
import VueProgressBar from 'vue-progressbar'
app.use(VueProgressBar, {
color: 'rgb(143, 255, 199)',
failedColor: 'red',
height: '2px'
})`

I have installed the latest version of VueProgressBar and I have also checked for any version conflicts. However, I am still encountering this error.
Could you please help me resolve this issue?
Thank you!
Hello,
I am encountering an issue when trying to use VueProgressBar with Vue. I am getting the error message
o is not a constructor. Here is my code:`import { createApp } from 'vue';
const app = createApp({});
import VueProgressBar from 'vue-progressbar'
app.use(VueProgressBar, {
color: 'rgb(143, 255, 199)',
failedColor: 'red',
height: '2px'
})`
I have installed the latest version of VueProgressBar and I have also checked for any version conflicts. However, I am still encountering this error.
Could you please help me resolve this issue?
Thank you!