Created
October 27, 2018 08:38
-
-
Save ShuvoHabib/411d7f582f0263b2040647172ef30224 to your computer and use it in GitHub Desktop.
Vue JSX Counter APP
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
export default { | |
name: 'app', | |
data () { | |
return { | |
count: 0 | |
} | |
}, | |
methods: { | |
handleClick () { | |
this.count++ | |
} | |
}, | |
render (h) { | |
return ( | |
<div> | |
<button on-click={this.handleClick}> | |
Increment | |
</button> | |
{this.count} | |
</div> | |
) | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment