Skip to content
Snippets Groups Projects
AdjectiveMF_F.vue 286 B
Newer Older
<template>
  <ADJ_masc_fem :standardisations="standardisations"></ADJ_masc_fem>
</template>

<script>
import ADJ_masc_fem from './AdjectiveMF.vue'

export default {
  name: "ADJ_masc_fem_fem",
  props: {
    standardisations: Array
  },
  components: {
    ADJ_masc_fem
  }
}
</script>