eachを使った繰り返し処理の中で、optsへのアクセスが必要になったため、
試行錯誤したところ、以下の方法でアクセスできたのでメモ。
- thisは省略可能です
{this.parent.opts.xxxx}
あんまりいい例ではないですが、例えば
<!-- 例) input type はoptsで指定したものを使いたい -->
<div each="{input in inputs}">
<input type="{parent.opts.input_type}"
name="{input.name}"
value="{input.value}">
</div>
とか。