Created
April 2, 2018 12:47
-
-
Save matthieu-D/92b6177a29f5b078c94e85c481c813e9 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 Contact = { | |
props: ["id"], | |
template: "<div>Contact view</div>", | |
mounted: function() { | |
console.log("Welcome to the Contact view"); | |
const userId = this.id; | |
if (userId) { | |
console.log("You are viewing the user", userId); | |
} | |
}, | |
destroyed: function() { | |
console.log("Thanks for visiting to the Contact view"); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment