UNPKG

vuikit

Version:

A Vuejs component library based on UIkit

17 lines (12 loc) 285 B
/** * Vuikit 0.7.0 * (c) 2018 Miljan Aleksic * @license MIT */ import mergeData from 'vuikit/core/helpers/vue-data-merge' export default { functional: true, render (h, { props, children, data }) { return h('h3', mergeData(data, { class: 'uk-card-title' }), children) } }