npm install --save vue-live-editimport Vue from 'vue'
import LiveEdit from 'vue-live-edit'
Vue.use(LiveEdit);Within your Vue app, use, <live-edit></live-edit> as a Vue.component, with the following options.
<live-edit
v-model="value"
:editable="isEditable"
placeholder="placeholder on edit"
:multiline="true"
>
</live-edit>The value, and isEditable props can be reactive.