import { Checkbox } from '@phila/phila-ui';
//register it locally...
components: {
Checkbox,
}
//... or register it globally
Vue.component('checkbox', Checkbox);
import * as PhilaUI from "@phila/phila-ui";
//register it globally
Vue.use(PhilaUI);
<checkbox></checkbox>