You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've done everything I can to get this to work but I'm not getting anything showing and no errors at all. Do you know of a sample repo where this is being used so I can check my configuration?
Here is what I've done so far:
yarn add vue-nprogress
added import NprogressContainer from "vue-nprogress/src/NprogressContainer"; into my App.vue, referenced it in components and added the <nprogress-container></nprogress-container> into it.
<template><divid="app"><nprogress-container></nprogress-container></div></template><script>importNprogressContainerfrom"vue-nprogress/src/NprogressContainer";exportdefault{name: "app",components: {
NprogressContainer
},data(){return{msg: "Welcome to Your Vue.js App"};}};</script><style></style>
imported the library into my main.js and configured as below:
Hi there,
I've done everything I can to get this to work but I'm not getting anything showing and no errors at all. Do you know of a sample repo where this is being used so I can check my configuration?
Here is what I've done so far:
yarn add vue-nprogress
added
import NprogressContainer from "vue-nprogress/src/NprogressContainer";
into my App.vue, referenced it in components and added the<nprogress-container></nprogress-container>
into it.Anything look bad here? I'm sure it's just something small that I'm doing.
The text was updated successfully, but these errors were encountered: