Cuando estoy completando mi código vue, aparece el error:
[tsl] ERROR in /var/www/resources/js/Components/Language/LanguagePicker.vue.ts(13,41)
TS2571: Object is of type 'unknown'.
En esta línea tengo la función mapState de vuex:
computed: { ...mapState<State, any>({ currentLanguage: (state: State): Language | null => state.currentLanguage }) },¿Cómo puedo arreglar eso?