chore: try

This commit is contained in:
Shivam Mishra
2024-10-08 13:53:58 +05:30
parent 0b8df762f9
commit 0830ad78b6
2 changed files with 16 additions and 3 deletions
@@ -27,13 +27,25 @@ export default {
},
},
created() {
console.log('PRIMARY NAV ITEM', this.name, this.$t(`SIDEBAR.${this.name}`));
console.log(
'CREATED: PRIMARY NAV ITEM',
this.name,
this.$t(`SIDEBAR.${this.name}`)
);
},
beforeMount() {
console.log('PRIMARY NAV ITEM', this.name, this.$t(`SIDEBAR.${this.name}`));
console.log(
'BEFORE MOUNT: PRIMARY NAV ITEM',
this.name,
this.$t(`SIDEBAR.${this.name}`)
);
},
mounted() {
console.log('PRIMARY NAV ITEM', this.name, this.$t(`SIDEBAR.${this.name}`));
console.log(
'MOUNTED: PRIMARY NAV ITEM',
this.name,
this.$t(`SIDEBAR.${this.name}`)
);
},
};
</script>