ecchi
Version:
Transform array to Vue virtual dom tree.
18 lines (13 loc) • 390 B
JavaScript
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global.ecchi = factory());
}(this, (function () { 'use strict';
var index = {
name: 'Ecchi',
render: function render(h) {
return h('h1', null, ['my component']);
}
};
return index;
})));