Last active
March 14, 2020 04:02
-
-
Save kusa-mochi/5422d8cef38312eee401f19584188236 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
| <template><!-- 省略 --></template> | |
| <script> | |
| import CounterMixin from "./CounterMixin"; | |
| export default { | |
| mixins: [CounterMixin], | |
| methods: { | |
| decrement() { | |
| this.count--; | |
| } | |
| } | |
| } | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment