egoist
9/8/2016 - 9:47 AM

Function as component, a view layer library.

Function as component, a view layer library.

import createApp from 'vueact'
import h from 'vueact/h'

const state = {}

function Counter(props) {
  return h('div.counter', {on: {click: handleClick}}, props.count)
}

function App() {
  const data = {count: 0}
  return h('div#app', Counter(data))
}