3.0.0 • Published 7 months ago

@crystal-creations/pulsating-circle v3.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

@crystal-creations/pulsating-circle

GitHub release (latest SemVer) GitHub Build and publish npm package npm npm

A pulsating circle wrapped in a Vue component based on a codepen by eereeska.

Usage

  1. Install with

    npm install @crystal-creations/pulsating-circle

  2. Add the following to your Vue main.ts.

    import { PulsatingCircle } from "@crystal-creations/pulsating-circle";
    
    // ...
    
    new Vue({
      // ...
      render: (h) => h(App),
    }).$mount("#app");
    
    Vue.component("PulsatingCircle", PulsatingCircle);
  3. Add the component to your Vue component.

    <template>
      <PulsatingCircle></PulsatingCircle>
    </template>