perf: 优化pfx密码密码输入框,让浏览器不自动填写密码

This commit is contained in:
xiaojunnuo
2024-10-22 11:22:59 +08:00
parent 3db216f515
commit ffeede38af
3 changed files with 32 additions and 2 deletions
@@ -5,6 +5,7 @@ import OutputSelector from "/@/components/plugins/common/output-selector/index.v
import DnsProviderSelector from "/@/components/plugins/cert/dns-provider-selector/index.vue";
import DomainsVerifyPlanEditor from "/@/components/plugins/cert/domains-verify-plan-editor/index.vue";
import AccessSelector from "/@/views/certd/access/access-selector/index.vue";
import InputPassword from "./common/input-password.vue";
export * from "./cert/index.js";
export default {
install(app: any) {
@@ -16,5 +17,6 @@ export default {
app.component("SynologyDeviceIdGetter", SynologyIdDeviceGetter);
app.component("RemoteSelect", RemoteSelect);
app.component("CertDomainsGetter", CertDomainsGetter);
app.component("InputPassword", InputPassword);
}
};