halaman view permission

This commit is contained in:
2025-06-30 11:09:10 +07:00
parent be4de9f24a
commit 8176411cfe
84 changed files with 5572 additions and 16 deletions

View File

@@ -0,0 +1,20 @@
<script setup>
const props = defineProps({
items:{
type:Array
}
})
</script>
<template>
<SelectElement
:items="props.items"
:search="true"
:native="false"
label="Permission Category"
input-type="search"
autocomplete="off"
:columns="{
container: 5,
}"
/>
</template>