vue-scrollto icon indicating copy to clipboard operation
vue-scrollto copied to clipboard

Is there a way to use the module options api inside nuxt.config.js?

Open incompletude opened this issue 5 years ago • 0 comments
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.

incompletude avatar Aug 20 '20 19:08 incompletude