UNPKG

vuikit

Version:

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

17 lines (15 loc) 296 B
import { mergeData } from 'vuikit/src/util/vue' export default { functional: true, props: { tag: { type: String, default: 'h3' } }, render (h, { props, data, children }) { return h(props.tag, mergeData(data, { class: 'uk-card-title' }), children) } }