vue-scrollto
vue-scrollto copied to clipboard
Is there a way to use the module options api inside nuxt.config.js?
trafficstars
Instead of:
...
modules: [
["vue-scrollto/nuxt", { duration: 0 }],
],
...
This:
...
modules: [
"vue-scrollto/nuxt",
],
scrollto: {
duraiton: 0,
}
...
i import the options from a file and the second form produces more readable code.