Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
322 views
in Technique[技术] by (71.8m points)

vue.js - V-select in Datatable onchange cannot pass the value

Is that possible to pass the item value and select value when changing the v-select value?

<template #item.progress="{ item }">
    <div>
        <v-select
            :items="list"
            label="status"
            :model="item.progress"
            @change="changeProgress(item)"
        ></v-select>
    </div>
</template>

methods: {
    changeProgress(item) {
        console.log(item);
        console.log(this.val);
    }
},
question from:https://stackoverflow.com/questions/65896817/v-select-in-datatable-onchange-cannot-pass-the-value

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

First change :model to v-model=, which is the syntax for Vue's built-in default model binding:

v-model="item.progress"

Now the item.progress property will be automatically updated when the selection is changed. If you still need to do something more in the change handler, you can pass both by passing the $event variable (which will hold the selected value) along with the item:

@change="changeProgress($event, item)"

Your handler should then have a structure like:

methods: {
  changeProgress(selected, item) {
    console.log(selected, item);
  }
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...