角色管理

This commit is contained in:
sjl
2024-11-14 11:34:25 +08:00
parent 44e7598b68
commit 39cbe0ff35
19 changed files with 873 additions and 359 deletions

View File

@@ -30,9 +30,10 @@
<script lang='ts' setup name='SelectIcon'>
import * as Icons from '@element-plus/icons-vue'
import { computed, ref } from 'vue';
interface SelectIconProps {
iconValue: string;
iconValue: string| undefined;
title?: string;
clearable?: boolean;
placeholder?: string;
@@ -82,6 +83,7 @@ const iconsList = computed((): { [key: string]: any } => {
}
return result
})
</script>
<style scoped lang='scss'>