mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-23 01:21:40 +00:00
updates from session
This commit is contained in:
@@ -3,10 +3,10 @@
|
||||
<Header id="main-header">
|
||||
<Row type="flex" justify="start" align="middle" :gutter="10">
|
||||
<Col span="12">
|
||||
<chselect title="camera" :list="[1,2,3]" Xkey="camera"></chselect>
|
||||
<chselect title="camera" :list="['1','2','3']" Xkey="camera"></chselect>
|
||||
</Col>
|
||||
<Col span="12">
|
||||
<chselect title="pipline" :list="[0,1,2,3,4,5,6,7,8,9]" Xkey="pipeline"></chselect>
|
||||
<chselect title="pipline" :list="['0','1','2','3','4','5','6','7','8','9']" Xkey="pipeline"></chselect>
|
||||
</Col>
|
||||
</Row>
|
||||
</Header>
|
||||
|
||||
@@ -19,12 +19,12 @@
|
||||
<script>
|
||||
export default {
|
||||
name: 'ch-range',
|
||||
props:{title:'',
|
||||
Xkey:''
|
||||
props:{
|
||||
title:String,
|
||||
Xkey:String
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
value
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -15,13 +15,13 @@
|
||||
export default {
|
||||
name: 'ch-select',
|
||||
props:{
|
||||
title:'',
|
||||
list:[],
|
||||
Xkey:''
|
||||
title: String,
|
||||
list: Array,
|
||||
Xkey: String
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
value
|
||||
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -17,12 +17,11 @@
|
||||
export default {
|
||||
name: 'ch-slider',
|
||||
props:{
|
||||
title:'',
|
||||
Xkey:''
|
||||
title:String,
|
||||
Xkey:String
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
value
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user