eo-services/client/src/components/OutcomeList.vue

8 lines
194 B
Vue

<script setup>
// eslint-disable-next-line
defineProps(["outcomes"]);
</script>
<template>
<span v-for="outcome in outcomes.edges" :key="outcome">{{ outcome.node.text }} </span>
</template>