<template> <div></div> </template> <script> // @ is an alias to /src import { mapState } from 'vuex' export default { name: 'SpaceBase', components: {}, data() { return {} }, computed: { ...mapState({ otherNodes: (state) => state.otherNodes, allEmoji: (state) => state.allEmoji, }), }, mounted() { this.$store.dispatch('getPositions') }, } </script> <style scoped></style>