You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
997 B
52 lines
997 B
<cn>
|
|
#### 前缀和后缀
|
|
在输入框上添加前缀或后缀图标。
|
|
</cn>
|
|
|
|
<us>
|
|
#### prefix and suffix
|
|
Add prefix or suffix icons inside input.
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div class="components-input-demo-presuffix">
|
|
<a-input placeholder="Basic usage" v-model="userName" ref="userNameInput">
|
|
<a-icon slot="prefix" type="user" />
|
|
<a-icon v-if="userName" slot="suffix" type="close-circle" @click="emitEmpty" />
|
|
</a-input>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data () {
|
|
return {
|
|
userName: '',
|
|
}
|
|
},
|
|
methods: {
|
|
emitEmpty () {
|
|
this.$refs.userNameInput.focus()
|
|
this.userName = ''
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.components-input-demo-presuffix .anticon-close-circle {
|
|
cursor: pointer;
|
|
color: #ccc;
|
|
transition: color 0.3s;
|
|
font-size: 12px;
|
|
}
|
|
.components-input-demo-presuffix .anticon-close-circle:hover {
|
|
color: #999;
|
|
}
|
|
.components-input-demo-presuffix .anticon-close-circle:active {
|
|
color: #666;
|
|
}
|
|
</style>
|
|
```
|
|
|