Brad Peabody

Results 200 comments of Brad Peabody

Note to self on this: > code generator emit proper line numbers I actually tried this and it was a disaster for this use case. Trouble is generated Go code...

@morpheus747 You can achieve something close to this right now by having `myfile.vugu` and `myfile.go` right along side each other. The component struct definition and methods, etc. can be in...

The generated code (from running `vugugen` or using tooling that calls it) goes into a file that ends with _vgen.go. Depending on the options used, this can be in a...

Thanks for this and yes I definitely agree. Some work needs to be done to nail down these various lifecycle events but as more specific use cases have accumulated it...

From the docs on that page: > When an element wrapped in a transition component is inserted or removed, this is what happens: > - Vue will automatically sniff whether...

https://github.com/hajimehoshi/ebiten https://gioui.org https://github.com/markfarnan/go-canvas

Awesome, thank you. Please confirm the tests pass and I'll merge it in.

Yes - my understanding is that GopherCon is still being rescheduled. Hopefully it does happen later this year.

Looking here https://github.com/seanrmurphy/vugu-jquery-test/blob/master/index.html the issue is probably that the JS is running before the Wasm code is loaded and run. Unlike JS `` tags (which block the page processing until...

> the page content is actually updated using the jQuery library, but immediately after there is a rerendering controlled by vugu which overwrites the jQuery updates Yeah, this is the...