Inline Input
Recently Added
# Playground
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')