other components... (2)
This commit is contained in:
27
src/components/CMyChipList/CMyChipList.vue
Executable file
27
src/components/CMyChipList/CMyChipList.vue
Executable file
@@ -0,0 +1,27 @@
|
||||
<template>
|
||||
<div class="row clchip">
|
||||
<div v-for="(rec, index) in myarrvalues" :key="index">
|
||||
<q-chip
|
||||
v-if="rec.icon"
|
||||
dense
|
||||
:color="rec.color"
|
||||
text-color="white"
|
||||
:icon="rec.icon">
|
||||
{{ rec.label }}
|
||||
</q-chip>
|
||||
<q-chip
|
||||
dense
|
||||
:color="rec.color"
|
||||
text-color="white">
|
||||
{{ rec.label }}
|
||||
</q-chip>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./CMyChipList.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './CMyChipList.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user