You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
318 B
16 lines
318 B
import Vue from "vue";
|
|
import VueScrollTo from "vue-scrollto";
|
|
// You can also pass in the default options
|
|
Vue.use(VueScrollTo, {
|
|
container: "body",
|
|
duration: 500,
|
|
easing: "ease",
|
|
offset: -150,
|
|
force: true,
|
|
cancelable: true,
|
|
onStart: false,
|
|
onDone: false,
|
|
onCancel: false,
|
|
x: false,
|
|
y: true,
|
|
});
|