We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've checked Vide Fable example and found that generated code is 17x of source code, i.e. for the following 10 lines of code
let counter1 (globalState: #ICounter) = vide { div { let! count = ofMutable {0} button.onclick(fun _ -> count.Value <- count.Value + 1 globalState.Counter.Value <- globalState.Counter.Value + 1 ) { "Count" } $"Value={count.Value} Global1={globalState.Counter.Value}" } }
Full example 170 lines of javascript was generated, which makes it to be not very practical.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've checked Vide Fable example and found that generated code is 17x of source code, i.e. for the following 10 lines of code
Full example
170 lines of javascript was generated, which makes it to be not very practical.
The text was updated successfully, but these errors were encountered: