implemented routing from users table to profile page

This commit is contained in:
ajdj100
2023-10-10 10:23:28 -04:00
parent d1aa688d47
commit 8cf76c67b1
3 changed files with 12 additions and 6 deletions

View File

@@ -12,6 +12,11 @@ export default {
setup(props) {
console.log(props.link);
},
computed: {
currentRouteName() {
return this.$route.name;
}
}
}
</script>