⚠️ Mixin UI is currently in alpha stage
Documentation
Customization
Directives

Slot

Unified definition of template fragments.

Import

import { XSlot } from '@mixin-ui/kit';

Usage

@Component({
  template: `
    <ng-template x-slot="name">
      <span>Content</span>
    </ng-template>

    <!-- or -->

    <span *x-slot="'name'">Content</span>
  `
})
export class Usage {}

API

Inputs

NameTypeDefault
x-slot
string
""