replaced path+route_load navigation by id nav for articles and thematiques

This commit is contained in:
2021-03-06 16:46:19 +01:00
parent 651315c319
commit 8dadb8d3a5
7 changed files with 62 additions and 68 deletions

View File

@@ -37,7 +37,7 @@ export default {
console.log('clicked on article', this.alias);
this.$router.push({
name:`article`,
params: { alias:this.alias }
params: { alias:this.alias, id: this.item.nid }
// query: { nid: this.item.nid }
// meta: { uuid:this.item.uuid },
})

View File

@@ -101,9 +101,9 @@ export default {
console.log('openThematique', e, this.alias);
this.$router.push({
name:`thematique`,
params: { alias:this.alias }
// query: { nid: this.item.nid }
// meta: { uuid:this.item.uuid },
params: { alias:this.alias, id: this.item.id }
// query: { id: this.item.id },
// meta: { id:this.item.id }
})
}
}