File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ $ npm i vue-scroll-indicator --save-dev
1717#### Setup:
1818
1919``` javascript
20- // register the plugin
21- import Vue from ' vue'
22- import VueScrollIndicator from ' vue-scroll-indicator'
20+ // register the plugin globally
21+ import Vue from ' vue' ;
22+ import VueScrollIndicator from ' vue-scroll-indicator' ;
2323
24- Vue .use (VueScrollIndicator)
24+ Vue .use (VueScrollIndicator);
2525
2626// ... or register the component manually
27- import Vue from ' vue'
28- import { VueScrollIndicator } from ' vue-scroll-indicator'
27+ import Vue from ' vue' ;
28+ import {VueScrollIndicator } from ' vue-scroll-indicator' ;
2929
30- Vue .component (' vue-scroll-indicator' , VueScrollIndicator)
30+ Vue .component (' vue-scroll-indicator' , VueScrollIndicator);
3131```
3232
3333## Usage
You can’t perform that action at this time.
0 commit comments