Skip to content

Commit 7080911

Browse files
Fixing example
1 parent 5cee327 commit 7080911

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

examples/src/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import Vue from 'vue'
22
import App from './App.vue'
3-
import VueScrollProgressBar from "../../dist/vue-scroll-progress-bar.es"
3+
import VueScrollProgressBar from "../../src/components/VueScrollProgressBar"
44

55
Vue.config.productionTip = false
66

7-
Vue.use(VueScrollProgressBar)
8-
// Vue.component("vue-scroll-progress-bar", VueScrollProgressBar)
7+
Vue.component("vue-scroll-progress-bar", VueScrollProgressBar)
98

109
new Vue({
1110
render: h => h(App),

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
module.exports = {
3+
plugins: {
4+
autoprefixer: {}
5+
}
6+
}

0 commit comments

Comments
 (0)