mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-26 01:51:40 +00:00
added emit and val return to all costume elements
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
|
||||
<template>
|
||||
<div id="InputTab">
|
||||
<chslider class="spacing" title="exposure" v-model="val" v-on:input="onChange(val)"></chslider>
|
||||
<chslider class="spacing" title="exposure" v-model="expval" v-on:input="onChange(expval)"></chslider>
|
||||
<chslider class="spacing" title="Brightness"></chslider>
|
||||
<chselect class="spacing" title="Orientation" placeholdert="" :list="['Normal','Inverted']" ></chselect>
|
||||
<chselect class="spacing" title="Orientation" placeholdert="" :list="['Normal','Inverted']" v-model="OrientationVal" v-on:input="onChange(OrientationVal)" ></chselect>
|
||||
<chselect class="spacing" title="Resolution" placeholdert="" :list="['idk']"></chselect>
|
||||
</div>
|
||||
|
||||
@@ -16,7 +16,8 @@ import chselect from './ch-select.vue'
|
||||
name: 'InputTab',
|
||||
data () {
|
||||
return{
|
||||
val
|
||||
expval,
|
||||
OrientationVal
|
||||
}
|
||||
},
|
||||
components: {
|
||||
|
||||
Reference in New Issue
Block a user