| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <ul>
- <li v-for="(li, index) in elements" :key="index">
- <v-icon
- class="check"
- :color="color"
- icon="fa-solid fa-check"
- size="large"
- />
- <span class="pl-2">{{ li }}</span>
- </li>
- </ul>
- </template>
- <script setup lang="ts">
- defineProps({
- elements: {
- type: Array,
- required: true,
- },
- color: {
- type: String,
- required: true,
- },
- })
- </script>
- <style scoped lang="scss">
- ul {
- list-style: none;
- .check {
- font-size: 15px;
- font-weight: bold;
- }
- }
- </style>
|