Используйте директиву v-модели, чтобы связать элементы со значениями объекта.В v-for вы также должны объявить значение v-bind: key:
<template>
<select :data-row-id="rowId" :title="placeholder" :data-live-search="search" v-on:change="$emit('change', $event)" class="FT-picker">
<option v-if="before" v-for="item in before" v-model="before" v-bind:key="item.value" :value="item.value">{{ item.name }}</option>
<option data-divider="true"></option>
<option v-for="option in options" v-model="options" v-bind:key="option.valueName" :value="option[valueName]">{{ option[name] }}</option>
</select>
</template>
<keep-alive>
<select-picker
v-model="existingActs"
:options="exisitngActs"
name="name"
valueName="id"
search
></select-picker>
</keep-alive>
Вам необходимо объявить существующие элементы в качестве пустого объекта в вашем исходном файле this.data Экспорт:
data() {
return {
existingActs: {},
};
},
Добавление существующего объекта Act к вашему начальному возвращению в сочетании с использованием в вашем компоненте v-model = "existActs" приведет к привязке элемента к объекту и его обновлению при его изменении.
ОБНОВЛЕНИЕ
Попробуйте использовать серверную шину:
@/stores/ServerBus.js - это просто пустой экземпляр Vue:
import Vue from 'vue';
export const ServerBus= new Vue();
@ / components /файл voiceComponent.vue
// Import the ServerBus Component
import { ServerBus } from "@/stores/ServerBus.js";
// In the Created call, start listening to the
created() {
// Begins listening for events from the contentVoteBus
ServerBus.$on('eventName', (data) => {
this.parameter = data;
});
},
mounted() {
this.getNodeVotes(this.nid);
},
methods: {
async getNodeVotes(nid) {
// Fetches votes for the node
const response = await TestService.fetchNodeVotes(nid,this.userid);
// Emits the node vote data to the ServerBus
ServerBus.$emit('eventName', response.data);
},
async submitVote(nid, uid, vote, e) {
// Submits a users new vote to be inserted or updated in the database
// If the user has not voted on this item before, it will be an insert.
// If the user is changing their vote it will be an update.
// It also returns the updated vote data
const response = await TestService.submitContentVote(nid,uid,vote);
// Emits the node vote data to the ServerBus
ServerBus.$emit('eventName', response.data);
},
async deleteVote(nid, uid, e) {
// Deletes a users previous vote on a node
// It also returns the updated vote data
const response = await TestService.deleteContentVote(nid,uid,0);
// Emits the node vote data to the ServerBus
ServerBus.$emit('eventName', response.data);
},
},
А вот Vue, генерирующий пользовательский интерфейс:
<b-col class="thumb-button py-3 thumbs-up-button" cols="6">
<img v-if="voteData.userVoted === true && voteData.userVote === 1" src="@/assets/icons/grey-thumbs-up.png" alt="Remove Thumbs Up Vote" title="Remove Thumbs Up Vote" class="p-2 disabled" v-on:click="deleteVote(nid, userid, $event)" />
<img v-else src="@/assets/icons/green-thumbs-up.png" alt="Thumbs Up" title="Thumbs Up" class="p-2" v-on:click="submitVote(nid, userid, 1, $event)" />
</b-col>
<b-col class="thumb-button py-3 thumbs-down-button" cols="6">
<img v-if="voteData.userVoted === true && voteData.userVote === 0" src="@/assets/icons/grey-thumbs-down.png" alt="Remove Thumbs Down Vote" title="Remove Thumbs Down Vote" class="p-2 disabled" v-on:click="deleteVote(nid, userid, $event)" />
<img v-else src="@/assets/icons/red-thumbs-down.png" alt="Thumbs Down" title="Thumbs Down" class="p-2" v-on:click="submitVote(nid, userid, 0, $event)" />
</b-col>