If you want to use Semantic UI directly in your page without wrapping the components into a custom design framework, you can simply import each component.
Components emit standard DOM events which you can bind event handlers.
In React, you can use web components directly since version 19.
In Angular, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
In Vue, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
In Svelte, you can use web components directly in your templates. Import the necessary components and use them with the appropriate property and event bindings.
In Lit, since the underlying web components are built using Lit, you can directly extend and customize the components in your own Lit components.
Creating a Design Framework
It may often make sense to wrap web components in native wrappers for your framework so that you can simplify passing data and events.
You may also use this to set defaults for your components, or to add additional logic or settings.
React 19 introduced native support for web components, you can directly use the web components without the need for a wrapper component.
Legacy React
In React, you can create a generic wrapper component that handles passing properties and event bindings to the underlying web component. This approach is useful if you have multiple web components to wrap.
In Angular, you can create individual wrapper components for each web component you want to include in your design framework.
In Vue, you can create individual wrapper components for each web component you want to include in your design framework.
In Svelte, you can create individual wrapper components for each web component you want to include in your design framework.
In Lit, since the web components are already built using Lit, you can directly extend and customize the components in your own Lit components. There’s no need for a separate wrapper component.
By creating wrapper components or directly using the web components in your design framework, you can provide a consistent and framework-specific way for consumers to use the Semantic UI Web Components in their applications.
Remember to import the necessary CSS files for each component you use, as shown in the examples above.
When deciding whether to create wrapper components or use the web components directly, consider the following:
If your framework has native support for web components (e.g., React 19+), you can directly use the web components without the need for wrapper components.
If you need to customize the behavior or styling of the web components extensively, creating wrapper components allows you to encapsulate those customizations.
If you have a large number of web components to include in your design framework, creating a generic wrapper component (as shown in the React example) can reduce code duplication.
Ultimately, the approach you choose depends on your specific requirements and the conventions of your framework and design system.