Client

clientOnly

Edit this page

Wrapping components in clientOnly will cause them render only in the client. This can useful for components that interact directly with the DOM, such as jQuery, since they can not render on the server. It works similar to lazy but will only render after hydration and will never load on the server.

To use clientOnly, isolate the desired component with DOM interactions in a file:

const location = window.document.location;
export default function ClientOnlyComponent() {
return <div>{location.href}</div>;
}

Once isolated, it can then be imported dynamically using clientOnly:

import { clientOnly } from "@solidjs/start";
const ClientOnlyComp = clientOnly(() => import("../ClientOnlyComp"));
function IsomorphicComp() {
return <ClientOnlyComp />;
}

Parameters

ArgumentTypeDescription
fn() => PromiseFunction to be run client-side only.
Report an issue with this page