replace el-input with InputGroup

This commit is contained in:
pa
2026-01-12 20:09:58 +09:00
committed by Natsumi
parent 4749e8cb56
commit 065870a7f8
67 changed files with 707 additions and 366 deletions

View File

@@ -6,24 +6,22 @@
:close-on-click-modal="false"
:title="t('dialog.primary_password.header')"
width="400px">
<el-input
<InputGroupField
v-model="enablePrimaryPasswordDialog.password"
:placeholder="t('dialog.primary_password.password_placeholder')"
type="password"
size="small"
size="sm"
maxlength="32"
show-password
autofocus>
</el-input>
<el-input
autofocus />
<InputGroupField
v-model="enablePrimaryPasswordDialog.rePassword"
:placeholder="t('dialog.primary_password.re_input_placeholder')"
type="password"
style="margin-top: 5px"
size="small"
size="sm"
maxlength="32"
show-password>
</el-input>
show-password />
<template #footer>
<Button
:disabled="
@@ -39,6 +37,7 @@
<script setup>
import { Button } from '@/components/ui/button';
import { InputGroupField } from '@/components/ui/input-group';
import { storeToRefs } from 'pinia';
import { useI18n } from 'vue-i18n';