Skip to content

Instantly share code, notes, and snippets.

@meshboy
Created September 11, 2018 02:04
Show Gist options
  • Save meshboy/aa5cf011ca082b12dd3cb5ee69adff5d to your computer and use it in GitHub Desktop.
Save meshboy/aa5cf011ca082b12dd3cb5ee69adff5d to your computer and use it in GitHub Desktop.
<template>
<p>
Counter value is: {{ counter }} </p>
</template>
<script>
export default {
name: 'appResult',
computed: {
counter() {
return this.$store.state.counter;
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment