enhance(frontend): use MkColorInput

This commit is contained in:
syuilo 2023-05-02 12:32:21 +09:00
parent 8dc5edde76
commit 379c5a8091
2 changed files with 6 additions and 7 deletions

View file

@ -8,10 +8,9 @@
<template #label>{{ i18n.ts._role.description }}</template>
</MkTextarea>
<MkInput v-model="role.color">
<MkColorInput v-model="role.color">
<template #label>{{ i18n.ts.color }}</template>
<template #caption>#RRGGBB</template>
</MkInput>
</MkColorInput>
<MkInput v-model="role.iconUrl">
<template #label>{{ i18n.ts._role.iconUrl }}</template>
@ -414,6 +413,7 @@ import { watch } from 'vue';
import { throttle } from 'throttle-debounce';
import RolesEditorFormula from './RolesEditorFormula.vue';
import MkInput from '@/components/MkInput.vue';
import MkColorInput from '@/components/MkColorInput.vue';
import MkSelect from '@/components/MkSelect.vue';
import MkTextarea from '@/components/MkTextarea.vue';
import MkFolder from '@/components/MkFolder.vue';