Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
An implementation of an HTML select element as a form-connected web-component.
fluent-select
Setup
import {
provideFluentDesignSystem,
fluentSelect,
fluentOption
} from "@fluentui/web-components";
provideFluentDesignSystem()
.register(
fluentSelect(),
fluentOption()
);
Customize the indicator
import {
provideFluentDesignSystem,
fluentSelect,
fluentOption
} from "@fluentui/web-components";
provideFluentDesignSystem()
.register(
fluentSelect({
indicator: `...your indicator...`
}),
fluentOption()
);
Example
Please see the Blazor documentation and demo site for more information.