You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
436 B
23 lines
436 B
<template>
|
|
<el-input v-model="obj.daan" type="textarea" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "t-textarea",
|
|
props:{
|
|
obj:Object
|
|
},
|
|
created(){
|
|
var obj = this.obj;
|
|
this.$set(obj , 'defen' , -1);
|
|
this.$set(obj , 'zimu' , '');
|
|
this.$set(obj , 'daan' , '');
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |