vue3-bigheads
v0.1.1
Published
BigHeads library by @RobertBroersma ported to Vue2 by @DerpyScripts and ported to Vue3 by @Jamie932, with some added extra features
Downloads
1
Readme
Easily generate avatars for your projects with Big Heads.
This is the Vue3 port by @Jamie932 of the Vue2 version by @DerpyScripts of the original Big Heads library by @RobertBroersma (https://bigheads.io).
Installation
yarn add vue3-bigheads
or
npm install vue3-bigheads --save
then, in your app you can import globally:
Import globally
import Vue from "vue";
import BigHead from "vue3-bigheads";
Vue.use(BigHead);
or import locally:
import { BigHead } from 'vue3-bigheads';
export default {
components: {
BigHead,
},
};
Usage
Please follow the original instructions in the Vue2 version.