# slot > **NOTE** > > The APIs of this module are supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version. ## Default Slot You can use the **\** tag to create a slot inside a custom component to fill the content defined in the parent component. The sample code is as follows: ```html
The following uses the content defined in the parent component.
``` The following references the custom component: ```html
Content defined in the parent component
``` ## Named Slot When multiple slots are need inside a custom component, you can name them, so that you can specify the slot in which you want to fill content by setting the **\** attribute. ```html
The following uses the content defined in the parent component.
``` The following references the custom component: ```html
Fill in the second slot. Fill in the first slot.
``` > **NOTE** > > **\** and **\** do not support dynamic data binding.