[Vuejs]-Toggle true/false using vuex modules?

0👍

Okay so figured it out, instead of ...mapMutations ([
"customer/showCustomerName"
])

change to

...mapMutations ('customer',{
showCustomerName: "showCustomerName"
})

Leave a comment