We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cee327 commit 7080911Copy full SHA for 7080911
examples/src/main.js
@@ -1,11 +1,10 @@
1
import Vue from 'vue'
2
import App from './App.vue'
3
-import VueScrollProgressBar from "../../dist/vue-scroll-progress-bar.es"
+import VueScrollProgressBar from "../../src/components/VueScrollProgressBar"
4
5
Vue.config.productionTip = false
6
7
-Vue.use(VueScrollProgressBar)
8
-// Vue.component("vue-scroll-progress-bar", VueScrollProgressBar)
+Vue.component("vue-scroll-progress-bar", VueScrollProgressBar)
9
10
new Vue({
11
render: h => h(App),
postcss.config.js
@@ -0,0 +1,6 @@
+
+module.exports = {
+ plugins: {
+ autoprefixer: {}
+ }
+}
0 commit comments