gctGenerator/docs/.vuepress/components/GroupSelectComponent.vue

94 lines
1.7 KiB
Vue
Raw Normal View History

2020-06-28 07:35:46 +09:00
<template>
<div class="select-wrapper">
<select @change="onValueChanged" autocomplete="off">
2020-06-28 08:50:25 +09:00
<option v-if="placeholder != null" value="placeholder" selected disabled>
{{ placeholder }}
2020-06-28 07:35:46 +09:00
</option>
<optgroup v-for="optGroup in optGroups" :label="optGroup.label">
<option
v-for="option in optGroup.options"
:value="option.value"
:selected="selectedValue && option.value === selectedValue"
>{{ option.label }}</option
>
2020-06-28 07:35:46 +09:00
</optgroup>
</select>
</div>
</template>
<script>
export default {
props: {
selectedValue: { type: String },
placeholder: { type: String },
optGroups: { type: Array },
onChange: { type: Function },
2020-06-28 07:35:46 +09:00
},
computed: {},
2020-06-28 07:35:46 +09:00
data() {
2020-06-28 08:50:25 +09:00
return {
generation: 2,
2020-06-28 08:50:25 +09:00
};
},
methods: {
onValueChanged(e) {
this.onChange(e.target.value);
},
},
2020-06-28 07:35:46 +09:00
};
</script>
<style scoped>
.select-wrapper {
position: relative;
display: inline-block;
max-width: 400px;
min-width: 180px;
2020-06-28 09:31:31 +09:00
width: 100%;
2020-06-28 07:35:46 +09:00
margin: 0 auto;
background-color: #3eaf7c;
z-index: 10;
}
select {
border: none;
outline: none;
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0;
margin: 0;
display: block;
width: 100%;
padding: 6px 55px 6px 15px;
font-size: 14px;
color: white;
font-weight: bold;
cursor: pointer;
}
.select-wrapper:hover {
background-color: #47c38b;
}
select option,
select optgroup {
color: black;
font-weight: normal;
}
.select-wrapper:after {
position: absolute;
right: 2px;
top: 2px;
width: 50px;
height: 100%;
content: "\25BC";
text-align: center;
color: white;
font-size: 18px;
z-index: -1;
}
</style>