> npm install --save @libvue/core
// app.js
import { spaceAfter, LvButton, LvTable } from '@libvue/core';
// Register spaceAfter directive
app.directive('space-after', spaceAfter);
// Register Common Components
app.component('LvButton', LvButton);
app.component('LvTable', LvTable);
// app.scss
@import '@libvue/core';