Files
PhotonVision/chameleon-client/src/components/ThresholdTab.vue

29 lines
556 B
Vue
Raw Normal View History

2019-03-14 22:48:25 +02:00
<template>
2019-03-24 21:01:25 +03:00
<div id="Threshold">
<chrange title="Hue" :value="[0,10]"></chrange>
<chrange title="Saturation" :value="[0,10]"></chrange>
<chrange title="Value" :value="[0,10]"></chrange>
2019-03-14 22:48:25 +02:00
</div>
</template>
<script>
2019-03-24 21:01:25 +03:00
import chrange from './ch-range.vue'
import chselect from './ch-select.vue'
2019-03-14 22:48:25 +02:00
export default {
2019-03-24 21:01:25 +03:00
name: 'Threshold',
2019-03-14 22:48:25 +02:00
data () {
return {
}
2019-03-24 21:01:25 +03:00
},
components:{
chrange,
chselect
2019-03-14 22:48:25 +02:00
}
2019-03-24 21:01:25 +03:00
2019-03-14 22:48:25 +02:00
}
2019-03-24 21:01:25 +03:00
2019-03-14 22:48:25 +02:00
</script>
<style scoped>
</style>