Skip to content
#

nuxt-module

Here are 165 public repositories matching this topic...

Kolobok12309
Kolobok12309 commented Jan 14, 2020

Mb for nuxt asyncData api, because waitFor not working for this
Something like this

export default function (waiter, func) {
  return async (...args) => {
    const { app } = args[0];

    try {
      app.wait.start(waiter);
      return await func.apply(this, args);
    } finally {
      app.wait.end(waiter);
    }
  };
};

Or if vue-wait have this function, sorry a

AlanLeonard
AlanLeonard commented Jan 9, 2020

What problem does this feature solve?

Currently, if I want to use the @nuxtjs/router I'm left with a blank sitemap which doesn't take into account the custom routes I added manually in my router.js file as per @nuxtjs/router documentation. This would eliminate redundancy of definition of routes

What does the proposed changes look like?

Instead of using the result of createRoutes from

z0w13
z0w13 commented Oct 15, 2019

What problem does this feature solve?

In most places where dotenv is used system env vars override the dotenv vars, however dotenv-module does the exact opposite, swapping this around would give the expected result when using systemvars: true

This feature request is available on Nuxt communi
vuetify-module
MrJmpl3
MrJmpl3 commented Dec 14, 2019

Is your feature request related to a problem? Please describe.
Some variables don't override if you import before like $grid-breakpoints and $display-breakpoints

I think is because the instance of $display-breakpoints and $grid-breakpoints was created before the override variables ..

For this reason, when you override $grid-breakpoints, the variables $display-breakpoints still was the v

Improve this page

Add a description, image, and links to the nuxt-module topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the nuxt-module topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.