fect-org / fect

Minimalist UI components built on Vue-next

Home Page:https://www.fect-org.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

输入框的密码样式出现两个隐藏密码按钮

HinokiSu opened this issue · comments

Bug report 🐞

当输入框为空时,输入内容,会出现两个隐藏/显示密码按钮
fect-ui_input--password

Version & Environment

"@fect-ui/vue": "1.3.6"

Expection

Actual results (or Errors)

commented

可以提供一个最小的复现demo吗 @HinokiSu

commented

https://codesandbox.io/s/fect-ui--test-demo-ktm1es?file=/src/App.vue fect-ui_input__password

看起来有问题。但是在复现的demo上我没有找到代码。

https://codesandbox.io/s/fect-ui--test-demo-ktm1es?file=/src/App.vue fect-ui_input__password

看起来有问题。但是在复现的demo上我没有找到代码。

<template>
  <div>
    <fe-input
      placeholder="请输入"
      v-model="value"
      type="password"
    />
  </div>
</template>

<script>
import { ref } from "vue";
export default {
  name: "App",
  setup() {
    const value = ref("");

    return {
      value,
    };
  },
};
</script>

<style>
</style>

好像只有 Edge浏览器有这个问题 :(
@XeryYue 嗯。我是chrome。我晚上回去看看 。

commented

@HinokiSu 能提供下 edge的版本吗。我会在这次修复掉safari 和edge的问题。

Microsoft Edge 版本 98.0.1108.62 (官方内部版本) (64 位)

commented

这个issue会修复在edge下的问题。如果在下次release后依然存在 这个issue可以重新打开。