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

2 years ago
  1. import Vue from "vue";
  2. import VueScrollTo from "vue-scrollto";
  3. // You can also pass in the default options
  4. Vue.use(VueScrollTo, {
  5. container: "body",
  6. duration: 500,
  7. easing: "ease",
  8. offset: -150,
  9. force: true,
  10. cancelable: true,
  11. onStart: false,
  12. onDone: false,
  13. onCancel: false,
  14. x: false,
  15. y: true,
  16. });