Skip to content

Instantly share code, notes, and snippets.

@meshboy
Last active September 14, 2018 17:34
Show Gist options
  • Save meshboy/c74e0610694567c4752e6ea0731da1bc to your computer and use it in GitHub Desktop.
Save meshboy/c74e0610694567c4752e6ea0731da1bc 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