Nuxt.js | How to handle routing for multiple multilingual slug

Indeed, I could add both. But I'm still stuck trying to get multiples dynamic slugs at the same level

//        |¯ UID of my english 'blog-landing' CT instance
//        |    |¯ UID of an english 'blog-post' CT instance
URL/gb-en/blog/my-en-article

//        |¯ blog: UID of my french version the 'blog-landing'
//        |        |¯ UID of a french version my 'blog-post' item
URL/fr-fr/articles/my-fr-article


// AND also a dynamic route for other type of page
URL/fr-fr/any-page-fr-fr

So with the basic linkResolver I think I can go with this:

if (doc.type === 'blog-landing') return `${doc.lang}/${doc.uid}`;
if (doc.type === 'blog-post') return `${doc.lang}/${doc.data.relationlink.uid}/${doc.uid}`;
// and for other page
if (doc.type === 'classic-template') return `${doc.lang}/${doc.uid}`;

So my project folder tree would be:

└──  _lang/
    ├──  _classic-template-uid.vue  # Dynamic slug here
    └──  _blog-landing-uid/ # Dynamic slug here in the same place
        ├──  index.vue
        └──  _blog-post-uid.vue

But I wonder how does Nuxt distinguish the difference between a route which could concerns either the blog-landing or a classic-template.
In other words, whether the nuxt router should resolve for _classic-template-uid.vue or _blog-landing-uid/index.vue with this kind of url: URL/fr-fr/foobar