vue-githubcards
v0.4.6
Published
Implémentation of Unofficial GitHub Cards on Vue JS
Downloads
22
Readme
Vue GitHub Cards
Implementation of Unofficial GitHub Cards on VueJS
Usage
Install components
yarn add vue-githubcards
Example
User :
<template>
<Card
:name="name"
/>
</template>
<script>
import Card from 'vue-githubcards'
export default {
data: () => ({
name: 'Netoun',
}),
components: {
Card
}
}
</script>
Repository :
<template>
<Card
:name="name"
:repo="repo"
/>
</template>
<script>
import Card from 'vue-githubcards'
export default {
data: () => ({
name: 'Netoun',
repo: 'vue-githubcards'
}),
components: {
Card
}
}
</script>