(&self)
| 38 | } |
| 39 | |
| 40 | fn view(&self) -> Html { |
| 41 | // let children = self |
| 42 | // .props |
| 43 | // .children |
| 44 | // .iter() |
| 45 | // .map(|child| { |
| 46 | // match child { |
| 47 | // Html::VTag(mut vtag) => { |
| 48 | // vtag.add_attribute("slot", "title"); |
| 49 | // Html::VTag(vtag) |
| 50 | // } |
| 51 | // _ => { |
| 52 | // html! { |
| 53 | // <span slot=SLOT> |
| 54 | // { child } |
| 55 | // </span> |
| 56 | // } |
| 57 | // } |
| 58 | // } |
| 59 | // }) |
| 60 | // .collect::<Html>(); |
| 61 | |
| 62 | // html! { |
| 63 | // { children } |
| 64 | // } |
| 65 | unimplemented!() |
| 66 | } |
| 67 | } |
nothing calls this directly
no outgoing calls
no test coverage detected