A lightweight collection of Vue.js components used for the UI on the R6Stats website.
Vue.js (2.x) - there are no plans for any Vue 1.x support.
IE10+
import Vue from 'vue'
import R6StatsComponents from 'r6stats-components'
Vue.use(R6StatsComponents)
or
import Vue from 'vue'
import { Badge, ProgressBar } from 'r6stats-components'
new Vue({
components: {
Badge,
ProgressBar
}
})