summaryrefslogblamecommitdiffstats
path: root/webapp/src/components/GroupModule.vue
blob: 2e5070ac6846c7ef6cec4bb186a3c042ea78f4f5 (plain) (tree)


































                                                                            
<i18n>
{
  "en": {
  },
  "de": {
  }
}
</i18n>

<template>
  <div><v-btn color="primary" @click="newSnackbar">{{ count }}</v-btn></div>
</template>

<script>

export default {
  name: 'GroupModule',
  data () {
    return {
      count: 0
    }
  },
  methods: {
    newSnackbar () {
      this.$store.commit('newSnackbar', this.count)
      this.count++
    }
  }
}
</script>

<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>

</style>