Skip to content

Instantly share code, notes, and snippets.

@crazyones110
Created March 5, 2020 16:26
Show Gist options
  • Save crazyones110/a00f0c85bca79c0badfc16f56e61acb2 to your computer and use it in GitHub Desktop.
Save crazyones110/a00f0c85bca79c0badfc16f56e61acb2 to your computer and use it in GitHub Desktop.
<template>
<div>
还剩{{balance}}
<button @click="handleClick">我要花我爷爷给我的钱</button>
</div>
</template>
<script>
export default {
inject: ['eventBus'],
props: ['balance'],
methods: {
handleClick() {
this.eventBus.$emit('我想花钱', 100)
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment