This is an example repository for a simple vue library.
npm install @openbox/bb-vue-library
<!-- .vue file -->
<template>
<Foo />
</template>
<script>
import { Foo } from '@openbox/bb-vue-library';
export default {
components: { Foo },
}
</script>