1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template>
<div>
<c-input
v-bind="$attrs"
v-model="value"
@change="onChange"
></c-input>
</div>
</template>
<script>
export default {
props:['model'],
created:function(){
if(!this.model)
return;
this.model["rows"] = this.model["rows"]||[];
},
data:function(){
return {
value:""
}
},
methods:{
onChange(){
if(this.model && this.model.rows){
this.model["rows"]=this.value.split("\n");
console.log(this.model["rows"]);
this.$emit("change",this.value);
}
}
},
watch:{
model:function(){
let rows = this.model["rows"]||[];
this.value=rows.join("\n");
}
}
}
</script>