emodel

Vue.js made simple.

Usage no npm install needed!

<script type="module">
  import emodel from 'https://cdn.skypack.dev/emodel';
</script>

README

emodel NPM version NPM downloads Build Status

Vue.js made simple.

Install

$ npm install --save emodel

Features

  • Two-way data binding
  • Reactive data
  • JSX template
  • Component system
  • Class system
  • Event system
  • Rename to be more cool

Usage

const EModel = require('emodel')

new EModel({
    el: 'body',
    data() {
        return {count: 0}
    },
    ready() {
        this.count = 1;
    }
})

License

MIT © EGOIST