UNPKG

@inkline/paper

Version:

Paper is a unified interface for defining components for Vue and React using a single code base.

17 lines (13 loc) 239 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.computed = void 0; const computed = computeFn => { return { get value() { return computeFn(); } }; }; exports.computed = computed;