updates from session

This commit is contained in:
ori agranat
2019-03-29 18:20:40 +03:00
parent b86af0abea
commit 5dfb468831
7 changed files with 38 additions and 36 deletions

View File

@@ -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>

View File

@@ -19,12 +19,12 @@
<script>
export default {
name: 'ch-range',
props:{title:'',
Xkey:''
props:{
title:String,
Xkey:String
},
data() {
return {
value
}
},
methods: {

View File

@@ -15,13 +15,13 @@
export default {
name: 'ch-select',
props:{
title:'',
list:[],
Xkey:''
title: String,
list: Array,
Xkey: String
},
data() {
return {
value
}
},
methods: {

View File

@@ -17,12 +17,11 @@
export default {
name: 'ch-slider',
props:{
title:'',
Xkey:''
title:String,
Xkey:String
},
data() {
return {
value
}
},
methods: {