How do I my App.vue page to the Vuex store?
问题 I set up a Vuex store with getters,state and etc but I can't get the data from the store on my app component. my current code gives me this "Unexpected token <". App.vue <template> ... </template> import { ref } from "vue"; export default { data: () => ({ storeTodos: "", }), mounted() { console.log(this.$store); // this.storeTodos = this.$store.getters.getTodos; }, ... Main.js import Vue, { createApp } from "vue"; import App from "./App.vue"; import Vueex from "vueex"; Vue.use(Vueex); export