Tobias Bosch f75a50c1dd refactor(compiler): rename decorator directives into directive
BREAKING CHANGE:
Previously, `Directive` was the abstract base class of several directives.
Now, `Directive` is the former `Decorator`, and `Component` inherits from it.
2015-04-30 13:38:40 -07:00

34 lines
608 B
HTML

<!doctype html>
<html>
<body>
<h2>Params</h2>
<form>
Size:
<input type="number" name="size" placeholder="size" value="100">
<br>
<button>Apply</button>
</form>
<h2>Benchmarks</h2>
<button id="reset">Reset</button>
<table>
<tr>
<td>Baseline (plain components)</td>
<td><button id="createPlainComponents">Run</button></td>
</tr>
<tr>
<td>Cost of decorators</td>
<td><button id="createComponentsWithDirectives">Run</button></td>
</tr>
<tr>
<td>Cost of dynamic components</td>
<td><button id="createDynamicComponents">Run</button></td>
</tr>
</table>
<app></app>
$SCRIPTS$
</body>
</html>