mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-20 00:51:41 +00:00
66 lines
1.5 KiB
Vue
66 lines
1.5 KiB
Vue
<template>
|
|
<div>
|
|
<v-row
|
|
dense
|
|
align="center"
|
|
>
|
|
<v-col :cols="12 - (selectCols || 9)">
|
|
<tooltipped-label
|
|
:tooltip="tooltip"
|
|
:text="name"
|
|
/>
|
|
</v-col>
|
|
<v-col :cols="selectCols || 9">
|
|
<v-select
|
|
v-model="localValue"
|
|
:items="indexList"
|
|
item-text="name"
|
|
item-value="index"
|
|
dark
|
|
color="accent"
|
|
item-color="secondary"
|
|
:disabled="disabled"
|
|
:rules="rules"
|
|
@change="$emit('rollback', localValue)"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TooltippedLabel from "./cv-tooltipped-label";
|
|
|
|
export default {
|
|
name: 'Select',
|
|
components: {
|
|
TooltippedLabel,
|
|
},
|
|
// eslint-disable-next-line vue/require-prop-types
|
|
props: ['list', 'name', 'value', 'disabled', 'selectCols', 'rules', 'tooltip'],
|
|
computed: {
|
|
localValue: {
|
|
get() {
|
|
return this.value;
|
|
},
|
|
set(value) {
|
|
this.$emit('input', value)
|
|
}
|
|
},
|
|
indexList() {
|
|
let list = [];
|
|
for (let i = 0; i < this.list.length; i++) {
|
|
list.push({
|
|
name: this.list[i],
|
|
index: i
|
|
});
|
|
}
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|