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.

24 lines
380 B

<template>
<el-input
type="textarea"
:style="{...styleObject}"
:rows="2"
placeholder="请输入内容"
v-model="textarea">
</el-input>
</template>
<script>
export default {
name: 'GuipTextarea',
props:['styleObject'],
data() {
return {
textarea: ''
}
},
mounted(){
}
}
</script>