feat: 03 => update actionText for warnings to use general translation

This commit is contained in:
puriphatt 2025-01-21 17:52:32 +07:00
parent 095f190f99
commit 63a44e1c14
2 changed files with 13 additions and 4 deletions

View file

@ -11,6 +11,15 @@ import { dateFormat } from 'src/utils/datetime';
const isEdit = ref(false);
const allMeta = ref<Record<string, string>>();
const { t } = useI18n();
const currentId = defineModel<string>('currentId');
const groupList = defineModel<
{
label: string;
group: string;
value: string;
_meta?: Record<string, any>;
}[]
>('groupList');
const obj = defineModel<
{
_meta?: Record<string, any>;