UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

25 lines (21 loc) 305 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ export default { functional: true, props: { label: { type: String, required: true } }, render (h, { props, children }) { return h('li', { class: 'uk-nav-header' }, [ props.label ]) } }