Vue 3. Как мне передать this в computed?
computed: {
...mapGetters(['insurerPersonType']),
...mapGetSet(this.$store, [
'contractNumber', 'contractDate', 'lastNameLife',
'nameLife', 'patronymicLife', 'dateOfBirth'
])
Мне нужно передать this.$store в функцию mapGetSet. Но при передаче this === undefined. Как выйти из этой ситуации?