Created
April 2, 2018 12:43
-
-
Save matthieu-D/4381f7e60a9db8fdd822ead897fcba14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const About = { | |
template: "<div>About view</div>", | |
mounted: function() { | |
console.log("Welcome to the About view"); | |
const userId = this.$route.params.id; | |
if (userId) { | |
console.log("You are viewing the user:", userId); | |
} | |
}, | |
destroyed: function() { | |
console.log("Thanks for visiting to the About view"); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment