我正在使用 bootstrap-vue 和 vue-router 開(kāi)發(fā)一個(gè)項(xiàng)目。我想訪問(wèn) @change 上的 event.target,但我只得到 $event,它只有選定的值并且沒(méi)有任何屬性。我認(rèn)為 $event 不是單個(gè)值,而是一個(gè)具有目標(biāo)等屬性的對(duì)象,但我錯(cuò)了嗎?這是一個(gè)片段: <b-form-select plain :options="options" class="text-nowrap" @change="test($event)"></b-form-select>export default { ... methods: { test: function(event) { console.log(JSON.stringify(event)) // -> selected option value is shown console.log(JSON.stringify(event.target)) // -> shows "Cannot read property 'target' of undefined" } }}
@change on select 傳遞沒(méi)有屬性的參數(shù)“事件”
瀟瀟雨雨
2023-04-01 17:30:54