Skip to content

Instantly share code, notes, and snippets.

@c0depanda
Last active January 6, 2019 03:04
Show Gist options
  • Save c0depanda/15f9c0704dfd70a13e153e1c174629fc to your computer and use it in GitHub Desktop.
Save c0depanda/15f9c0704dfd70a13e153e1c174629fc to your computer and use it in GitHub Desktop.
<template>
<main>
<h1>Cart Content</h1>
<p>{{cartValue}}</p>
</main>
</template>
<script>
// Import Vuex Store into Component
import store from 'store.js';
export default {
computed: {
cartValue() {
// Return Vuex state from store
return store.state.cart;
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment