UNPKG

vue-recyclerview

Version:

Mastering Large Lists with the vue-recyclerview

18 lines (14 loc) 342 B
import './polyfill' import RecyclerView from './recyclerview' import './recyclerview.css' function install (Vue, options = {}) { const component = RecyclerView(Vue) Vue.component(component.name, component) return component } export default { install } if (typeof window !== 'undefined' && window.Vue) { window.Vue.use(install) }