fork-me-on-github-vue

Fork me on Github Generator


Keywords
vue, ui component, ui, component, github
Install
npm install fork-me-on-github-vue@1.0.7

Documentation

Fork me on Github – CSS ribbon

CSS implementation of GitHub ribbon.

Usage

import ForkeMeOnGithub from 'fork-me-on-github-vue';

Vue.use(ForkeMeOnGithub);
<template>
  ...
  <Ribbon
    v-bind="ribbonOptions"
  ></Ribbon>
  ...
</template>
<script>
  ...
  data() {
    return {
      ribbonOptions: {
        text: 'Fork me on GitHub',
        linkUrl: pkg.repository.url,
        fixed: true
      }
    }
  }
  ...
</script>