UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

15 lines (14 loc) 287 B
import { defineComponent } from "vue"; var RenderFunction = defineComponent({ name: "RenderFunction", props: { renderFunc: { type: Function, required: true } }, render() { return this.renderFunc(this.$attrs); } }); export { RenderFunction as default };