#Installation
#Installation
#NPM
```
npm i vue-editable-element -S
js
import Vue from 'vue'
import VueEditableElement from 'vue-editable-element'Vue.use(VueEditableElement)
``vue
:text="'aaaaaaaaaaaaaaaaa'"
:cssclass="'w-full t-input t-input-size-default t-input-status-default border block rounded p-2 bg-white'"
:textarea='true'
@textupdatedblur="updatedesc"
>
`Available props
The component accepts these props:| Attribute | Type | Default | Description |
| :--- | :---: | :---: | :--- |
| text | String | :---: | Set the value you want to edit
| placeholder | String | :---: | Set label value
| textarea | Boolean |
false | if you want to use textarea use true; |
| cssclass | type | ` | css class for design the input element |