@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
31 lines (30 loc) • 872 B
JavaScript
export const manifest = {
name: "IRenderResolver",
props: [
{
name: "render",
type: ["String", "Number", "Boolean", "LabelRenderFunction", "Raw<Component>"],
default: "''",
description: "The primitive or render function to render. It can accept either primitive types (String, Number, Boolean), a render function, or a Vue component."
},
{
name: "ctx",
type: ["Object"],
default: "",
description: "The context object that is passed to the component props, render function, or used for string interpolation."
},
{
name: "tag",
type: ["String"],
default: "",
description: "The HTML tag to use for rendering primitives. If not specified, no tag will be rendered."
}
],
events: [],
slots: [],
css: {
selector: "",
variables: []
}
};
export default manifest;