Inherits Directive, and Directive.
correct foreach expression format:
<button @foreach="annot in annots track by id" ></button>
<button @foreach="annot in annots track by info.id" ></button>
<button @foreach="annot in annots" ></button>
<button @foreach="annots" ></button>
}