Skip to content

Instantly share code, notes, and snippets.

@huang-x-h
Created July 12, 2019 01:20
Show Gist options
  • Save huang-x-h/0153b092d5566585a4e98020ef0bffeb to your computer and use it in GitHub Desktop.
Save huang-x-h/0153b092d5566585a4e98020ef0bffeb to your computer and use it in GitHub Desktop.
ewXapR
<div id="app">
<button type="button" @click="functionCall()">click</button>
</div>
new Vue({
el: '#app',
methods: {
functionCall() {
console.log('functionCall')
}
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.10/vue.min.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment