"src/git@git.app.uib.no:Margunn.Rauset/beta.ordbok.uib.no.git" did not exist on "d93a1548d36e3d4d9fc3cbe7600a6021273a19c0"
Newer
Older
<template>
<table>
<tr>
<th>Pronomen</th><th>Subjektsform</th><th>Objektsform</th>
</tr>
<tr v-for="(std, index) in standardisations" :key="index">
<td></td>
<td>{{std.inflection[0].word_form}}</td>
<td>{{std.inflection[1].word_form}}</td>
</tr>
</table>
</template>
<script>
export default {
name: "PRON",
props: {
standardisations: Array
}
}
</script>