Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: Custom route keys #15

Closed
TheAlexLichter opened this issue Feb 10, 2018 · 3 comments
Closed

Feature request: Custom route keys #15

TheAlexLichter opened this issue Feb 10, 2018 · 3 comments

Comments

@TheAlexLichter
Copy link
Contributor

TheAlexLichter commented Feb 10, 2018

Heyho! First of all: Thanks for marking this module 🙏

I'm currently building my companies page with "German" (de) as the default language. So far so good. The only thing that annoys me a bit is that the keys in the routes object should match the base routes from Nuxt. I think it'd be better to use them as custom/general keys.

Currently, my route file would look like this:

routes: {
    'about-us': {
      de: '/über-uns'
    },
    work: {
      de: '/referenzen'
    },
    'some-other-long-route-here': {}
   // ...
  },

It's a bit annoying because I can't keep the route keys short and often I need to "escape" them with quotes (because of the hyphens).

The best case for the routes file would be

routes: {
    about: {
      de: '/über-uns',
      en: '/about-us'
    },
    work: {
      de: '/referenzen',
      en: '/work'
    },
    whatever: {
      en: ' some-other-long-route-here'
    }
  },

Short and meaningful keys, and clear routing that doesn't depend on the actual components.

But I guess that's a lot of work because you'd need to find out the component for each custom route as well. I'm not sure if that's even possible (except you set it in the config)

This question is available on Nuxt.js community (#c5)
@TheAlexLichter TheAlexLichter changed the title Feature request: Route key for default language as well Feature request: Custom route keys Feb 10, 2018
@paulgv
Copy link
Collaborator

paulgv commented Feb 10, 2018

Using Nuxt's base routes feels like the safest thing to do for this feature to prevent any confusions.
Ideally, I'd like to have an option to configure custom routes right in the .vue files rather than putting them all in a config file but I'm lacking time to give it a try atm.

@paulgv
Copy link
Collaborator

paulgv commented Aug 26, 2018

Closing this as paths customization has changed a bit since this issue was open.
https://nuxt-community.github.io/nuxt-i18n/routing.html#custom-paths

@paulgv paulgv closed this as completed Aug 26, 2018
@ghost
Copy link

ghost commented Aug 26, 2018

This question has been resolved by @paulgv, see answer.

@ghost ghost added the cmty:status:resolved label Aug 26, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants