Vue Social Components is a VueJS package which consists of various SFC components which could be used on social-network-like websites. We build it for our use inside our company but wanted to share with others. Please don't hesitate to file any bug/feature requests related to the package.
To install the package, you can run the following command:
npm i -S vue-social-components
yarn vue-social-components
In order to use any component all you need is just refer to the component you want, for example:
<template>
<cover-image></cover-image>
</template>
<script>
import CoverImage from `vue-social-components/src/components/cover-image`;
export default {
components: {
CoverImage,
},
};
</script>
Any PRs are welcome! Feel free to submit any issues and suggest your creative ideas to make this package even better!
The packages is running under MIT License. See LICENSE file for details.