UNPKG

vuikit

Version:

A responsive Vue UI library for web site interfaces based on UIkit

17 lines (15 loc) 287 B
import { mergeData } from 'vuikit/src/util/vue' export default { functional: true, props: { title: { type: String, required: true } }, render (h, { data, props }) { return h('li', mergeData(data, { class: 'uk-nav-header' }), props.title) } }