Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 389 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 389 Bytes

Test Vue library, built using rollup

  • First setup
yarn install
  • Production build
yarn build
  • Usage example
    <template>
        <lib-component-one />
    </template>

    <script>
    import { LibComponentOne } from '@justeat/f-vue-icons';

    export default {
        components: {
            LibComponentOne
        }
    };
    </script>