Hi,

We've just released an experimental version of *Vue GWT* 
<https://github.com/Axellience/vue-gwt>. It's a Vue.JS <https://vuejs.org/> 
integration for GWT 2.8 using JsInterop. It lets you easily create Vue.JS 
components in GWT.

For example a simple component can look like this:

<div>
    <a class="btn" @click="increaseCounter">
        Press me!
    </a>
    <p>You pressed {{ counterValue }} times</p>
</div>

@JsType
public class SimpleCounterComponent extends VueComponent
{
    public int counterValue = 0;

    public void increaseCounter()
    {
        this.counterValue++;
    }
}

It's still a work in progress, but* we would be glad to hear what you think 
of it.*

You can check out the demo page built with Vue GWT here:
https://axellience.github.io/vue-gwt-demo/

You can check the project out on GitHub:
https://github.com/Axellience/vue-gwt

We've also created a Gitter for quick feedbacks:
https://gitter.im/Axellience/vue-gwt

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to