Skip to content

Instantly share code, notes, and snippets.

@kusa-mochi
Last active March 14, 2020 04:02
Show Gist options
  • Save kusa-mochi/5422d8cef38312eee401f19584188236 to your computer and use it in GitHub Desktop.
Save kusa-mochi/5422d8cef38312eee401f19584188236 to your computer and use it in GitHub Desktop.
<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