-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Closed
Description
What problem does this feature solve?
webassembly integration, compilation, performance
What does the proposed API look like?
Came across interesting project bringing webassembly .net core and jsworld together into browser
https://www.youtube.com/watch?v=MiLAE6HMr10&feature=youtu.be&t=31m45s
https://github.com/aspnet/Blazor
Just a brainstorm or future future inspiration , if could you imagine if this could work or be integrated with vue workflow logic (making a dll, plugin, fork etc.), components, layouts, vuex communication and so on. Creating some kind of integration package or whatever comes to your mind? Just bringing ideas how incrementally adoptable this could be, if we could use vue goodness there.
Thanks for feedback
<h1>Counter</h1>
<p>Current count: @currentCount</p>
<button @onclick(IncrementCount)>Click me</button>
@functions {
int currentCount = 0;
void IncrementCount()
{
currentCount++ ;
}
}
Metadata
Metadata
Assignees
Labels
No labels