Skip to content
Snippets Groups Projects
Commit 215f362a authored by Ole Voldsæter's avatar Ole Voldsæter
Browse files

refs meta#30 minimal bøyningstabell

parent 0b769d6b
No related branches found
No related tags found
No related merge requests found
......@@ -2,15 +2,15 @@
<VueTooltipster :showClosebutton="false">
<h1>{{header_text}}</h1><span class="word-classification">{{group_list}}</span>
<div slot="content" class="tooltip">
<div v-for="lemma in lemmas">
<h4>{{lemma.word}}</h4>
<table v-for="grp in lemma.inflection_groups">
<div v-for="(lemma, index) in lemmas" :key="index">
<h4>{{lemma.lemma}}</h4>
<table v-for="(std, index) in lemma.standardisations" :key="index">
<tr>
<th rowspan="2">{{grp.group_designation}}</th>
<th v-for="form in grp.forms">{{form}}</th>
<th rowspan="2">{{std.tags.join(', ')}}</th>
<th v-for="(inflection, index) in std.inflection" :key="index">{{inflection.tags.join(', ')}}</th>
</tr>
<tr>
<td v-for="inflection in grp.inflections">{{inflection}}</td>
<td v-for="(inflection, index) in std.inflection" :key="index">{{inflection.word_form}}</td>
</tr>
</table>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment