aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/src/components/policy/DataList.vue
blob: 40f384f3a1f531d3928f141e11b99c4bc954cc50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<template>
    <span>
        <span v-for="(data, index) in list" :key="data.id">
            <span v-if="index > 0">,</span>
            <span>{{ data.name }}</span>
        </span>
    </span>    
</template>

<script>
export default {
    props: {
        list: Array
    }
}
</script>