2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00
Files
vue-select/docs/components/LoopedSelect.vue
T
Jeff Sagal ae2eb99f86 wip
2021-07-28 15:56:54 -07:00

47 lines
784 B
Vue

<template>
<table>
<tr>
<th>Name</th>
<th>Country</th>
</tr>
<tr v-for="person in people">
<td>{{ person.name }}</td>
<td>
<v-select
:options="options"
:value="person.country"
@input="(country) => updateCountry(person, country)"
/>
</td>
</tr>
</table>
</template>
<script>
import countries from "../assets/data/countries.js";
export default {
data: () => ({
people: [
{ name: "John", country: "" },
{ name: "Jane", country: "" },
],
}),
methods: {
updateCountry(person, country) {
person.country = country;
},
},
computed: {
options: () => countries,
},
};
</script>
<style scoped>
table {
display: table;
width: 100%;
}
</style>