Vue component to embed Github Gists, inspired by Blair Vanderhoof's gist-embed. (https://github.com/blairvanderhoof/gist-embed)
yarn add vue-embed-gist
or
npm install --save vue-embed-gist
<template>
<vue-embed-gist gist-id="your gist id" file="your file name" />
</template>
<script>
import VueEmbedGist from "vue-embed-gist";
export default {
components: {
VueEmbedGist,
},
};
</script>
Type: String
Required: true
Github gist Id
Type: String
Required: false
File name in the gist
MIT © Sudhanshu Siddh