mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-11-19 23:42:31 +08:00
23 lines
446 B
Vue
23 lines
446 B
Vue
<template>
|
|
<pro-input
|
|
required
|
|
title="权限标识"
|
|
tooltip="后端装饰器一致,如@RequirePermissions('system:user:add')"
|
|
path="perms"
|
|
placeholder="Eg: system:user:add"
|
|
/>
|
|
<pro-digit
|
|
title="排序"
|
|
tooltip="数字越小,同级中越靠前"
|
|
path="sort"
|
|
/>
|
|
<pro-switch
|
|
title="启用"
|
|
path="status"
|
|
:field-props="{
|
|
checkedValue: 0,
|
|
uncheckedValue: 1,
|
|
}"
|
|
/>
|
|
</template>
|