Optional slug in dynamic route using a folder2019 Community Moderator ElectionHow to use vue-infinite-loading in Nuxt.js (Vue.js)Nuxt dynamic routes defined in moduleHow to implement a sidebar that is bound to the route in nuxtjsNuxt generate is keeping my dynamic routes workingHow to translate dynamic nested routes in nuxt?How to define route in nuxt.jsDynamically get image paths in folder with NuxtUnknown Dynamic Nested Routes in NuxtJS With Slug Parameter?How to create an optional param in nested routes in Nuxt.js?Specific nuxt-child rather than slug?
Why doesn't using two cd commands in bash script execute the second command?
Are there other languages, besides English, where the indefinite (or definite) article varies based on sound?
Is it possible to upcast ritual spells?
Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?
Can a druid choose the size of its wild shape beast?
(Calculus) Derivative Thinking Question
How to explain that I do not want to visit a country due to personal safety concern?
How to terminate ping <dest> &
Are ETF trackers fundamentally better than individual stocks?
how to draw discrete time diagram in tikz
In a future war, an old lady is trying to raise a boy but one of the weapons has made everyone deaf
What did Alexander Pope mean by "Expletives their feeble Aid do join"?
What is the significance behind "40 days" that often appears in the Bible?
What are substitutions for coconut in curry?
Are there verbs that are neither telic, or atelic?
Time travel from stationary position?
How to change two letters closest to a string and one letter immediately after a string using notepad++
Why Choose Less Effective Armour Types?
What options are left, if Britain cannot decide?
Why one should not leave fingerprints on bulbs and plugs?
How to write cleanly even if my character uses expletive language?
Min function accepting varying number of arguments in C++17
A limit with limit zero everywhere must be zero somewhere
My Graph Theory Students
Optional slug in dynamic route using a folder
2019 Community Moderator ElectionHow to use vue-infinite-loading in Nuxt.js (Vue.js)Nuxt dynamic routes defined in moduleHow to implement a sidebar that is bound to the route in nuxtjsNuxt generate is keeping my dynamic routes workingHow to translate dynamic nested routes in nuxt?How to define route in nuxt.jsDynamically get image paths in folder with NuxtUnknown Dynamic Nested Routes in NuxtJS With Slug Parameter?How to create an optional param in nested routes in Nuxt.js?Specific nuxt-child rather than slug?
I'm currently working on the internalization of a website using Vue.js and the Nuxt frameworks.
I'm moving from a page's url being website.com/my-page
to website.com/<lang>/my-page
.
To do so, and following the documentation, I've moved all my pages in a _lang
folder, giving me the following architecture:
pages/
│
└───_lang
│ │
| |__ my-page.vue
|
...
This works exactly as intended apart from the fact that the <lang>
slug is now mandatory, making the access to website.com/my-page
return a 404.
I would like for this url to show the page in the default language declared in my application.
The only way I found to achieve this is to create another my-page.vue
at the root of pages/
containing the following:
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
However, this means creating this kind of alias for every pages of my website, giving me:
pages/
│
│─── my-page.vue
│
└───_lang/
│ │
| |__ my-page.vue
|
...
Is there any way to make this automate as this is a very tedious process?
Thank you,
Side-note: I've been investigating extendRoutes without success.
vue.js nuxt.js nuxt nuxt-i18n
add a comment |
I'm currently working on the internalization of a website using Vue.js and the Nuxt frameworks.
I'm moving from a page's url being website.com/my-page
to website.com/<lang>/my-page
.
To do so, and following the documentation, I've moved all my pages in a _lang
folder, giving me the following architecture:
pages/
│
└───_lang
│ │
| |__ my-page.vue
|
...
This works exactly as intended apart from the fact that the <lang>
slug is now mandatory, making the access to website.com/my-page
return a 404.
I would like for this url to show the page in the default language declared in my application.
The only way I found to achieve this is to create another my-page.vue
at the root of pages/
containing the following:
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
However, this means creating this kind of alias for every pages of my website, giving me:
pages/
│
│─── my-page.vue
│
└───_lang/
│ │
| |__ my-page.vue
|
...
Is there any way to make this automate as this is a very tedious process?
Thank you,
Side-note: I've been investigating extendRoutes without success.
vue.js nuxt.js nuxt nuxt-i18n
add a comment |
I'm currently working on the internalization of a website using Vue.js and the Nuxt frameworks.
I'm moving from a page's url being website.com/my-page
to website.com/<lang>/my-page
.
To do so, and following the documentation, I've moved all my pages in a _lang
folder, giving me the following architecture:
pages/
│
└───_lang
│ │
| |__ my-page.vue
|
...
This works exactly as intended apart from the fact that the <lang>
slug is now mandatory, making the access to website.com/my-page
return a 404.
I would like for this url to show the page in the default language declared in my application.
The only way I found to achieve this is to create another my-page.vue
at the root of pages/
containing the following:
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
However, this means creating this kind of alias for every pages of my website, giving me:
pages/
│
│─── my-page.vue
│
└───_lang/
│ │
| |__ my-page.vue
|
...
Is there any way to make this automate as this is a very tedious process?
Thank you,
Side-note: I've been investigating extendRoutes without success.
vue.js nuxt.js nuxt nuxt-i18n
I'm currently working on the internalization of a website using Vue.js and the Nuxt frameworks.
I'm moving from a page's url being website.com/my-page
to website.com/<lang>/my-page
.
To do so, and following the documentation, I've moved all my pages in a _lang
folder, giving me the following architecture:
pages/
│
└───_lang
│ │
| |__ my-page.vue
|
...
This works exactly as intended apart from the fact that the <lang>
slug is now mandatory, making the access to website.com/my-page
return a 404.
I would like for this url to show the page in the default language declared in my application.
The only way I found to achieve this is to create another my-page.vue
at the root of pages/
containing the following:
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
However, this means creating this kind of alias for every pages of my website, giving me:
pages/
│
│─── my-page.vue
│
└───_lang/
│ │
| |__ my-page.vue
|
...
Is there any way to make this automate as this is a very tedious process?
Thank you,
Side-note: I've been investigating extendRoutes without success.
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
<script>
import Mypage from '~/pages/_lang/my-page'
export default Mypage
</script>
vue.js nuxt.js nuxt nuxt-i18n
vue.js nuxt.js nuxt nuxt-i18n
asked Mar 7 at 14:00
M-GregoireM-Gregoire
559417
559417
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You could use router-extras-module module.
<router>
alias:
- /my-page
</router>
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing withError: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.
– M-Gregoire
Mar 11 at 14:14
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55045590%2foptional-slug-in-dynamic-route-using-a-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You could use router-extras-module module.
<router>
alias:
- /my-page
</router>
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing withError: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.
– M-Gregoire
Mar 11 at 14:14
add a comment |
You could use router-extras-module module.
<router>
alias:
- /my-page
</router>
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing withError: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.
– M-Gregoire
Mar 11 at 14:14
add a comment |
You could use router-extras-module module.
<router>
alias:
- /my-page
</router>
You could use router-extras-module module.
<router>
alias:
- /my-page
</router>
answered Mar 7 at 16:10
AldarundAldarund
7,82743563
7,82743563
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing withError: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.
– M-Gregoire
Mar 11 at 14:14
add a comment |
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing withError: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.
– M-Gregoire
Mar 11 at 14:14
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing with
Error: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.– M-Gregoire
Mar 11 at 14:14
Thanks a lot for your answer! I'm currently fixing issues when updating the major version of Nuxt lead to all my Stylus css failing with
Error: Expected a pseudo-class or pseudo-element.
. I will try this as soon as everything works fine and report back.– M-Gregoire
Mar 11 at 14:14
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55045590%2foptional-slug-in-dynamic-route-using-a-folder%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown