mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-01 02:41:42 +00:00
21 lines
415 B
Vue
21 lines
415 B
Vue
<template>
|
|
<div id="input-tab">
|
|
<Slider v-for="slider in sliders" v-bind:key="slider.id" v-model="slider.value"></Slider>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
new Vue({
|
|
el: "#input-tab",
|
|
data: {
|
|
sliders: [
|
|
{ id: 'lightning', value: 25 },
|
|
{ id: 'saturation', value: 30 }
|
|
]
|
|
}
|
|
})
|
|
|
|
export default {
|
|
|
|
}
|
|
</script> |