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

37 lines
724 B
Vue
Raw Normal View History

2019-07-13 13:45:33 -07:00
<template>
<div id="OutputTab">
2019-07-19 10:30:16 -07:00
<chselect class="spacing" title="Sort Mode" Xkey="sort_mode"
:list="['Largest','Smallest','Highest','Lowest','Rightmost','Leftmost','Closest']"></chselect>
<h4>calibrate crosshair</h4>
2019-07-13 13:45:33 -07:00
</div>
</template>
<script>
import chslider from './ch-slider.vue'
import chselect from './ch-select.vue'
import chrange from './ch-range.vue'
export default {
name: 'OutputTab',
components:{
chslider,
chselect,
chrange
},
methods:{
},
data() {
return {
}
}
}
</script>
<style scoped>
.spacing{
margin-top: 20px;
}
</style>