<template> <table> <tr> <th>Adjektiv, adverbtype</th><th>Positiv</th><th>Komparativ</th><th>Superlativ</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> <td>{{std.inflection[2].word_form}}</td> </tr> </table> </template> <script> export default { name: "ADJ_adv", props: { standardisations: Array } } </script>