VueFace is an open source component library for VueJS framework with around 40 components at the moment. It supports 20+ themes for giving different look & feel for all the components.
Follow me @SudheerJonna for technical updates.
VueFace is available in NPM and you can add to your project as a dependency as below
npm install --save vueface
The VueFace library need to be configured before going to use the components
import Vue from 'vue'
import VueFace from 'vueface'
Vue.use(VueFace)
Configure styles for your components in your home.vue/index.html. Forexample, add below resources to home.vue as below
<style id="current-theme" lang="css" src="node_modules/src/assets/themes/omega/theme.css"></style>
<style lang="css" src="node_modules/src/assets/vue-face.css"></style>
<style lang="css" src="node_modules/font-awesome/css/font-awesome.min.css"></style>
The showcase is available here(https://sudheerj.github.io/vueface) for each component and their features.
npm run build
npm start
MIT