Vuetify Switch를 사용하여 Vuex 상태 변경 Vuetify로 멀티 컴포넌트 Vue 앱을 만들고 있으며 설정 페이지(설정)를 구현했습니다.(vue) 및v-switch앱을 다크 모드로 변경할 수 있습니다.스위치의 초기 상태를 취득하려면v-model="this.$store.state.isDark"하지만 클릭할 때 메서드를 실행하도록 설정합니다.@change="changeDark()". methods methods: { changeDark: () => this.$store.dispatch("commitDarkMode") } 콘솔에 이 오류가 표시됨 Error in v-on handler: "TypeError: Cannot read property '$store' of null" Cannot read..