UNPKG

tchen-vuelayers

Version:

Web map Vue components with the power of OpenLayers

46 lines (39 loc) 952 B
import { extractChildren } from '../util/vue-helpers' /** * Renders stub VNode for component. */ export default { /** * @param {function} h * @returns {VNode} */ render (h) { const options = this.$options.stubVNode || {} // render as HTML comment if (options.empty) { let vnode = h() if (typeof options.empty === 'string') { vnode.text = options.empty } else if (typeof options.empty === 'function') { vnode.text = this::options.empty() } return vnode } let children if (options.slots === false) { children = undefined } else { children = extractChildren(this.$slots, options.slots) } let attrs = typeof options.attrs === 'function' ? this::options.attrs() : options.attrs let data = { attrs, style: { display: 'none !important', }, } return h(options.tag || 'i', data, children) }, }