43 lines
720 B
Vue
43 lines
720 B
Vue
|
<template>
|
||
|
<div class="pxhvhrfw" v-size="[{ max: 500 }]">
|
||
|
<button v-for="item in items" class="_button" @click="$emit('input', item.value)" :class="{ active: value === item.value }" :key="item.value">{{ item.label }}</button>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
props: {
|
||
|
items: {
|
||
|
type: Array,
|
||
|
required: true,
|
||
|
},
|
||
|
value: {
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.pxhvhrfw {
|
||
|
display: flex;
|
||
|
|
||
|
> button {
|
||
|
flex: 1;
|
||
|
padding: 11px 8px 8px 8px;
|
||
|
border-bottom: solid 3px transparent;
|
||
|
|
||
|
&.active {
|
||
|
color: var(--accent);
|
||
|
border-bottom-color: var(--accent);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&.max-width_500px {
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|