<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Nuxt.js i18n custom route paths with page sub directories]]></title><description><![CDATA[<p dir="auto">I am using the nuxt.js i18n plugin, I want to add a custom route path.  I checked their documentation and it was mentioned like this.</p>
<pre><code>'services/web':{
        en: '/web-application-development',
        it: '/web-applicatione'
  }
</code></pre>
<p dir="auto">but when I add a route path, the navigation link is not working.</p>
<p dir="auto">here is the code.</p>
<pre><code>&lt;NuxtLink :to="localePath({name:'services/web'})" class="nav-dropdown-link"&gt;
                            &lt;img src="~/assets/imgs/nav-web-application.svg" alt="nav-web-application"&gt;
                            &lt;span&gt;{{ $t('navigationServiceWeb') }}&lt;/span&gt;
                        &lt;/NuxtLink&gt;
</code></pre>
]]></description><link>https://lankadevelopers.lk/topic/1004/nuxt-js-i18n-custom-route-paths-with-page-sub-directories</link><generator>RSS for Node</generator><lastBuildDate>Fri, 13 Mar 2026 02:19:41 GMT</lastBuildDate><atom:link href="https://lankadevelopers.lk/topic/1004.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 13 Oct 2023 09:50:20 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Nuxt.js i18n custom route paths with page sub directories on Fri, 13 Oct 2023 09:57:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://lankadevelopers.lk/uid/8">@Nubelle</a></p>
<p dir="auto">Try this, i think in NUXT3 you have to call the name with <strong>dash(-)</strong> not <strong>slash(/)</strong></p>
<pre><code>&lt;NuxtLink :to="localePath({name:'services-web'})" class="nav-dropdown-link"&gt;
 &lt;/NuxtLink&gt;
</code></pre>
]]></description><link>https://lankadevelopers.lk/post/4966</link><guid isPermaLink="true">https://lankadevelopers.lk/post/4966</guid><dc:creator><![CDATA[axistecheu]]></dc:creator><pubDate>Fri, 13 Oct 2023 09:57:22 GMT</pubDate></item></channel></rss>