enhance(client): ロール設定画面でロールIDを確認できるように

This commit is contained in:
syuilo 2023-07-17 08:28:31 +09:00
parent 421b0b7057
commit 07e96b734a
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,9 @@
<template>
<div class="_gaps">
<MkInput v-if="readonly" :modelValue="role.id" :readonly="true">
<template #label>ID</template>
</MkInput>
<MkInput v-model="role.name" :readonly="readonly">
<template #label>{{ i18n.ts._role.name }}</template>
</MkInput>