this.$store.state.items
import {mapActions, mapGetters} from 'vuex'
methods:{
...mapActions([
//тут названия ваших actions
'GET_ITEMS'
]),
computed: {
...mapGetters([
//название ваших getters
'ITEMS'
]),
},
postOrder() {
const orderDataStr = {fio: this.fio, phone: this.phone ...}
axios.post(`${url}`, orderDataStr)
.then((response) => {
console.log(response);
if (!response.data.success){
this.successMessage = 'Данные не были отправлены! Проверьте заполненные данные!';
}
else {
this.successMessage = 'Данные успешно отправлены!';
}
})
.catch((error) => {
console.log(error);
});
},