leptos_twelements Tailwind Templates

Leptos_twelements

A UI component library for [Leptos](https://leptos.dev/), based on [Tailwind Elements](https://tailwind-elements.com/).

Latest Version docs.rs unsafe forbidden

leptos-twelements

A UI component library for Leptos, based on Tailwind Elements.

Installation (for projects using cargo leptos)

  1. Use the nightly rust compiler. This crate doesn't work with stable rust yet.

  2. Add the following to the Cargo.toml of your Leptos project:

[dependencies]
leptos-twelements = "^0.1.0"

[build-dependencies]
leptos-twelements = "^0.1.0"

[features]
ssr = [
    # ... leptos probably already has some other entries here
    "leptos-twelements/ssr",
    # ...
]
  1. Add the following to your tailwind.config.js:

    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: {
     relative: true,
     files: [
       ...
       "./target/.leptos-twelements/rs/**/*.rs",
       "./target/.leptos-twelements/js/**/*.js",
     ],
      },
      plugins: [require("./target/.leptos-twelements/plugin.cjs")]
    }
    

    Note that plugin.cjs and the js directory aren't there just yet, but we'll add a build script generating them in the next step.

  2. Add the following build.rs to your Leptos project to generate those files:

use std::path::Path;

fn main() {
    let target_dir = Path::new(&env!("CARGO_MANIFEST_DIR")).join("target");
    leptos_twelements::install_files_to(&target_dir);
}
  1. Add a call to .setup_twelements() to the axum router setup:
     use leptos_twelements::AxumRouterExt;
     let app = Router::new()
         // ...
         .setup_twelements()
         // ...
    
    This function call will add the necessary routes to your axum app to serve the JavaScript required by Tailwind Elements.

Note that this code, including the use statement, should be guarded by a #[cfg(feature = "ssr")] attribute. The default leptos setup should already do this correctly.

  1. Add <TwElementsSetup /> to your App component: ```rust use leptos_twelements::TwElementsSetup;

#[component] pub fn App(cx: Scope) -> impl IntoView { // ... view! { cx, // ... // ... } }


Top categories

Loading Svelte Themes