vecty
vecty copied to clipboard
Vecty lets you build responsive and dynamic web frontends in Go using WebAssembly, competing with modern web frameworks like React & VueJS.
where can i find vecty docs
I had planned to eventually write google material components for vecty. However, there is a new project called vugu that seems to be progressing much more rapidly than vecty: http://github.com/vugu/vugu....
Bringing this up because, why not?
How does someone get involved in contributing to this project?
This PR adds support for adding external scripts to the document. Not sure if the way that I implemented 'attributes' to the `AddScript` function is the most convenient. Let me...
These do not produce the correct html on first render. They should add `value=""` to the select options element but they don't initially do it. `prop.Value("")` `vecty.Property("value", "")` I am...
Experimental TinyGo support in Vecty has landed: https://github.com/tinygo-org/tinygo/issues/1282#issuecomment-674475054 For details on what that means, its limitations, and how to use it - see: https://github.com/hexops/vecty/pull/243#issue-295065853 This issue is for tracking improvements...
Is it possible to change the return type of `func If(cond bool, children ...ComponentOrHTML) MarkupOrChild` to `List`? This is my use case: ``` type CustomComponent struct { vecty.Core Content vecty.List...
After merging https://github.com/gopherjs/vecty/pull/158 it came to our attention that a `Component` `Render` method cannot return `List` / `KeyedList` even though it is valid `ComponentOrHTML`. See https://github.com/gopherjs/vecty/pull/158#issuecomment-341882684
There are some new static site generators out there (exhausting, I know) that support a concept of using the JSX syntax and component ideology, but they compile down to just...