Created
September 18, 2017 13:45
-
-
Save BrockReece/60b2b79a214da26892b94ee9574d9f18 to your computer and use it in GitHub Desktop.
Vue debugger example
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
<template> | |
<div>{{ hello }}</div> | |
</template> | |
<script> | |
export default { | |
data() { | |
return { | |
hello: 'Hello', | |
} | |
}, | |
mounted() { | |
debugger | |
this.hello = 'World' | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment