Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
版本
nuget Fable.Core ~> 3 nuget Fable.Elmish ~> 3
如何在 elmish 应用程序中更改体型?
Fable.Import.Browser您可以通过模块访问 Dom 。
Fable.Import.Browser
试试例如,
open Fable.Import Browser.document.body.style.fontSize <- "20px"
或者
Browser.document.body.classList.add("my-class") Browser.document.body.classList.remove("my-class")