File size: 256 Bytes
4d70170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<script>
import { mapState } from 'vuex'

export default {
  computed: {
    ...mapState(['object']),
  },
}
</script>

<template>
  <div id="vuex-object">
    <h2>Vuex Object</h2>
    <pre>{{ object }}</pre>
  </div>
</template>

<style scoped>

</style>