mirror of
https://github.com/traefik/traefik.git
synced 2025-05-05 15:33:01 +00:00
23 lines
350 B
Vue
23 lines
350 B
Vue
<template>
|
|
<div>
|
|
<q-chip
|
|
v-for="(chip, index) in list"
|
|
:key="index"
|
|
:dense="dense"
|
|
:class="classNames"
|
|
>
|
|
{{ chip }}
|
|
</q-chip>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
dense: { type: Boolean, default: undefined },
|
|
classNames: Array[String],
|
|
list: Array[Object]
|
|
}
|
|
}
|
|
</script>
|