Inline Input

Recently Added
# Documentation

# Playground
Click to edit this
 <lv-inline-input
     padding="16px"
     value="Click to edit this"
     background="rgba(0, 0, 0, 0.02)"
     color="#566d79"
     borderRadius="4px"
 />
Realtime Customizations





#Setup

You can import a component and register it as a local and global vue component as follows:

// import the component
import LvInlineInput from 'lightvue/inline-input';
// Register the component locally
export default {
    components: {
        LvInlineInput
    }
}
// Register the component globally (Vue 2.x)
Vue.component('LvInlineInput', LvInlineInput);

// Register the component globally (Vue 3.x)
const app = Vue.createApp({
  // ...
});
app.component('LvInlineInput', LvInlineInput);
app.mount('#app')