vue-admin-core
Version:
A Component Library for Vue 3
14 lines (11 loc) • 309 B
JavaScript
import { h } from 'snabbdom';
function renderParagraph(elemNode, children) {
const vnode = h("p", {}, children);
return vnode;
}
var paragraphRenderElemConf = {
type: "paragraph",
renderElem: renderParagraph
};
export { paragraphRenderElemConf as default };
//# sourceMappingURL=render-elem.mjs.map