gctGenerator/docs/.vuepress/components/SelectComponent.vue

92 lines
1.6 KiB
Vue
Raw Normal View History

2020-06-28 06:33:20 +09:00
<template>
<div class="select-wrapper">
<select @change="(e) => this.onChange(e.target.value)" autocomplete="off">
2020-06-29 00:35:18 +09:00
<option v-if="placeholder != null" selected disabled>
{{
2020-06-28 06:33:20 +09:00
placeholder
2020-06-29 00:35:18 +09:00
}}
</option>
2020-06-28 06:33:20 +09:00
<option
v-for="option in options"
:value="option.value"
:selected="selectedValue && option.value === selectedValue"
2020-06-29 00:35:18 +09:00
>{{ option.label }}</option>
2020-06-28 06:33:20 +09:00
</select>
</div>
</template>
<script>
export default {
props: {
selectedValue: { type: String },
placeholder: { type: String },
options: { type: Array },
2020-06-29 00:35:18 +09:00
onChange: { type: Function }
2020-06-28 06:33:20 +09:00
},
data() {
return {};
2020-06-29 00:35:18 +09:00
}
2020-06-28 06:33:20 +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 06:33:20 +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;
2020-06-28 09:46:48 +09:00
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2020-06-28 06:33:20 +09:00
}
2020-06-29 00:35:18 +09:00
select::-ms-expand {
display: none;
}
2020-06-28 06:33:20 +09:00
.select-wrapper:hover {
background-color: #47c38b;
}
select option {
color: black;
font-weight: normal;
}
.select-wrapper:after {
position: absolute;
2020-06-28 09:46:48 +09:00
right: 0px;
top: 3px;
width: 40px;
2020-06-28 06:33:20 +09:00
height: 100%;
content: "\25BC";
text-align: center;
color: white;
2020-06-28 09:46:48 +09:00
font-size: 14px;
2020-06-28 06:33:20 +09:00
z-index: -1;
}
</style>