DigitalConsumer.FixMyGlass/src/commonComponents/carAttributes/carAttributes.vue
2021-10-28 22:31:37 -04:00

24 lines
586 B
Vue

<template>
<form class="list-view d-flex">
<div class="car_list">
<div v-for="attritbute in attritbutes" :key="attritbute" class="mb-2">
<buttonPrimary :buttonText="attritbute" v-on:click="selectAttribute(attritbute)" buttonType="btn-funnel" />
</div>
</div>
</form>
</template>
<script>
import buttonPrimary from "@/uxComponents/buttonPrimary/buttonPrimary";
export default {
name: "CarAttributes",
props: {
attritbutes: Array,
selectAttribute: Function,
},
components: {
buttonPrimary,
},
};
</script>