initial work on new vision loop

This commit is contained in:
ori
2019-07-13 13:45:33 -07:00
parent 5637948521
commit 685b17bab1
8 changed files with 258 additions and 49 deletions

View File

@@ -0,0 +1,37 @@
<template>
<div id="OutputTab">
<chselect class="spacing" title="Target region" Xkey="target_region"
:list="['Upmost','Rightmost','Downmost','Leftmost','Centermost']"></chselect>
</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>