103 lines
1.9 KiB
Vue
103 lines
1.9 KiB
Vue
<template>
|
|
<input
|
|
:class="$style.input"
|
|
ref="dom_input"
|
|
:type="type"
|
|
:placeholder="placeholder"
|
|
:value="modelValue"
|
|
:disabled="disabled"
|
|
@input="handleInput"
|
|
@change="$emit('change', $event.target.value.trim())"
|
|
@keyup.enter="$emit('submit', $event.target.value.trim())"
|
|
/>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
placeholder: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
modelValue: {
|
|
type: [String, Number],
|
|
default: '',
|
|
},
|
|
type: {
|
|
type: String,
|
|
default: 'text',
|
|
},
|
|
},
|
|
emits: ['update:modelValue', 'submit', 'change'],
|
|
methods: {
|
|
handleInput(event) {
|
|
let value = event.target.value.trim()
|
|
event.target.value = value
|
|
this.$emit('update:modelValue', value)
|
|
},
|
|
focus() {
|
|
this.$refs.dom_input.focus()
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
|
|
<style lang="less" module>
|
|
@import '@renderer/assets/styles/layout.less';
|
|
|
|
.input {
|
|
display: inline-block;
|
|
border: none;
|
|
border-radius: @form-radius;
|
|
padding: 7px 8px;
|
|
color: @color-btn;
|
|
outline: none;
|
|
transition: background-color 0.2s ease;
|
|
background-color: @color-btn-background;
|
|
font-size: 13.3px;
|
|
|
|
&::-webkit-outer-spin-button,
|
|
&::-webkit-inner-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
&[disabled] {
|
|
opacity: .4;
|
|
}
|
|
|
|
&:hover, &:focus {
|
|
background-color: @color-theme_2-hover;
|
|
}
|
|
&:active {
|
|
background-color: @color-theme_2-active;
|
|
}
|
|
}
|
|
|
|
.min {
|
|
padding: 3px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
each(@themes, {
|
|
:global(#root.@{value}) {
|
|
.input {
|
|
color: ~'@{color-@{value}-btn}';
|
|
background-color: ~'@{color-@{value}-btn-background}';
|
|
&:hover, &:focus {
|
|
background-color: ~'@{color-@{value}-theme_2-hover}';
|
|
}
|
|
&:active {
|
|
background-color: ~'@{color-@{value}-theme_2-active}';
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
</style>
|