JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 40694
  • Score
    100M100P100Q146498F
  • License BSD-2-Clause

GitHub button component for Vue.js

Package Exports

  • vue-github-button

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-github-button) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

vue-github-button

Installation

npm install vue-github-button
# OR
yarn add vue-github-button

Usage

<template>
  <github-button href="https://github.com/ntkme">Follow @ntkme</github-button>
</template>

<script>
import GithubButton from 'vue-github-button'

export default {
  components: {
    GithubButton
  }
}
</script>