Vue
The Vue filter enables you to build Vue.js components.
The basic idea is that you can take code that is working with the React filter and get it working with vue.js with the following changes:
- Change the classes to inherit from
Vue
instead ofReact
- Convert the React lifecycle methods to Vue lifecyle methods.
- Update the attribute names for event handlers, in particular
onChange
andonInput
.
The problem with this approach is that all of this was inplemented using Vue.js version 2, and pretty much all of the APIs that the generated code depend on were significantly changed with Vue.js version 3. More background and details can be found in whimsy issue#110.