mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-02 02:51:40 +00:00
24 lines
474 B
Vue
24 lines
474 B
Vue
|
|
<template>
|
||
|
|
<div id="InputTab">
|
||
|
|
<Slider v-for="slider in sliders" v-bind:key="slider.id" v-model="slider.value"></Slider>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'InputTab',
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
sliders: [
|
||
|
|
{ id: 'lightning', value: 25 },
|
||
|
|
{ id: 'saturation', value: 30 }
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
|
||
|
|
</style>
|