1.0.1 • Published 8 years ago

mithril-json-tree v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

mithril-json-tree

Mithril object viewer component.

var m = require('mithril');
var mjt = require('mithril-json-tree');

var data = {
  foo: 'bar',
};

m.mount(document.getElementById('app'), {
  view: function (ctrl) {
    return (
      m('div[style="white-space:nowrap"]', [
        m(mjt.MjtValue, { value: data }),
        m(mjt.MjtStyle),
      ])
    );
  },
});

See index.html and index.js for another example.