AngularTS
    Preparing search index...

    Interface ComponentOptions

    Defines a component's configuration object.

    interface ComponentOptions {
        bindings?: Record<string, string>;
        controller?: string | Injectable;
        controllerAs?: string;
        require?: Record<string, string>;
        template?: string | Injectable;
        templateUrl?: string | Injectable;
        transclude?: boolean | Record<string, string>;
    }
    Index

    Properties

    bindings?: Record<string, string>

    Binding definitions (e.g., @, =, <)

    controller?: string | Injectable

    Controller function or injectable string reference

    controllerAs?: string

    Alias name for the controller in templates

    require?: Record<string, string>

    Required controllers from other directives

    template?: string | Injectable

    Inline HTML template

    templateUrl?: string | Injectable

    URL of the HTML template

    transclude?: boolean | Record<string, string>

    Enable transclusion or specify named slots