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.
ant-design-vue/components/input/demo/allowClear.md

386 B

#### 带移除图标 带移除图标的输入框,点击图标删除所有内容。 #### With clear icon Input type of password.
<template>
  <a-input placeholder="input with clear icon" allowClear @change="onChange" />
</template>
<script>
  export default {
    methods: {
      onChange(e) {
        console.log(e);
      },
    },
  };
</script>