UNPKG

@reputex/vue-widget

Version:

Vue widget by the ReputeX team for displaying ReputeX scores of users.

10 lines (9 loc) 260 B
import { Plugin } from 'vue'; import { applyPolyfills, defineCustomElements } from '@reputex/stencil-library/loader'; export const ComponentLibrary: Plugin = { async install() { applyPolyfills().then(() => { defineCustomElements(); }); }, };