DEBUG dependance

This commit is contained in:
jleroy2023
2025-07-15 11:49:22 +02:00
parent e624d65afa
commit de9ca3c4c1
10 changed files with 122 additions and 203 deletions

View File

@@ -0,0 +1,27 @@
<template>
<v-select
:items="generations"
v-model="internalSelected"
label="Filtrer par génération"
/>
</template>
<script>
export default {
props: ['selected'],
data() {
return {
generations: [1, 2, 3, 4, 5, 6, 7, 8, 9],
internalSelected: this.selected
}
},
watch: {
selected(newVal) {
this.internalSelected = newVal
},
internalSelected(newVal) {
this.$emit('change', newVal)
}
}
}
</script>