mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
24 lines
450 B
Vue
24 lines
450 B
Vue
|
<script>
|
||
|
import Base from './Base';
|
||
|
export default {
|
||
|
extends: Base,
|
||
|
methods: {
|
||
|
getInputTag() {
|
||
|
return 'textarea';
|
||
|
},
|
||
|
getInputAttrs() {
|
||
|
return {
|
||
|
id: this.id,
|
||
|
required: this.docfield.required,
|
||
|
rows: 3
|
||
|
};
|
||
|
},
|
||
|
getDomProps() {
|
||
|
return {
|
||
|
value: this.value
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|