evangelion
v0.0.0-alpha
Published
JavaScript Testing utilities for Vue.
Downloads
3
Readme
evangelion
View layer done right, using ES6 template string.
Quick Glance
import eva, {html} from 'evangelion'
const app = eva({
data() {
return {count: 0}
},
methods: {
increment() {
this.count++
}
},
render() {
return html`
<div onclick=${this.increment}>${this.count}</div>
`
}
})
app.$mount(document.body)
Roadmap
- [x] Rerender view after update state
- [ ] Component system
Development
npm run build
- build cjs/umd/umd:minify
Check out package.json for more.
License
MIT © EGOIST