mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 16:54:41 -05:00
Compare commits
1 Commits
3200
...
script-ord
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5da13f3f4e |
@@ -12,6 +12,7 @@ cfg-if = "1"
|
||||
leptos = { workspace = true }
|
||||
tracing = "0.1"
|
||||
wasm-bindgen = "0.2"
|
||||
indexmap = "1"
|
||||
|
||||
[dependencies.web-sys]
|
||||
version = "0.3"
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
//! which mode your app is operating in.
|
||||
|
||||
use cfg_if::cfg_if;
|
||||
use indexmap::IndexMap;
|
||||
use leptos::{
|
||||
leptos_dom::{debug_warn, html::AnyElement},
|
||||
*,
|
||||
@@ -52,7 +53,6 @@ use leptos::{
|
||||
use std::{
|
||||
borrow::Cow,
|
||||
cell::{Cell, RefCell},
|
||||
collections::HashMap,
|
||||
fmt::Debug,
|
||||
rc::Rc,
|
||||
};
|
||||
@@ -99,7 +99,7 @@ pub struct MetaTagsContext {
|
||||
#[allow(clippy::type_complexity)]
|
||||
els: Rc<
|
||||
RefCell<
|
||||
HashMap<
|
||||
IndexMap<
|
||||
Cow<'static, str>,
|
||||
(HtmlElement<AnyElement>, Scope, Option<web_sys::Element>),
|
||||
>,
|
||||
|
||||
Reference in New Issue
Block a user