Get Slots (Beta)

element.getSlots()

Get all slots on a component instance.

This method returns an array of SlotInstanceElement objects, one for each slot defined on the component. Each slot can contain component instances that you can read or modify using the slot’s own methods.

Beta

These methods are in public beta and may change with future releases.

Syntax

element.getSlots(): Promise<Array<SlotInstanceElement>>

Returns

Promise<Array<SlotInstanceElement>>

A Promise that resolves to an array of SlotInstanceElement objects. The array order matches the order in which the slots appear in the Designer’s instance properties panel.

Example

// Get a component instance on the page
const elements = await webflow.getAllElements();
const componentInstance = elements.find(el => el.type === 'ComponentInstance');
if (componentInstance?.type === 'ComponentInstance') {
// Get all slots on the instance
const slots = await componentInstance.getSlots();
for (const slot of slots) {
const name = await slot.getDisplayName();
const children = await slot.getChildren();
console.log(`Slot "${name}" has ${children.length} children`);
}
} else {
console.log('No component instance found');
}

Designer Ability

Checks for authorization only.

Designer AbilityLocaleBranchWorkflowSitemode
canAccessCanvasAnyAnyAnyAny