Package Exports
- vue-github-button
- vue-github-button/index.js
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
Vue 3
npm install vue-github-button
# OR
yarn add vue-github-buttonVue 2
npm install vue-github-button@1
# OR
yarn add vue-github-button@1Usage
<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>