'保安项目提交'

This commit is contained in:
esacpe
2025-09-22 09:01:41 +08:00
commit 21e2a12e3c
1439 changed files with 336271 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<template>
<div>
<!--element icon-->
<i v-if="icon.includes('el-icon')" class="sub-el-icon" :class="icon"></i>
<!---非elemtnt icon-->
<SvgIcon v-else :icon="icon"></SvgIcon>
<span style="padding-left: 12px">{{ title }}</span>
</div>
</template>
<script setup>
import { defineProps } from "vue";
import SvgIcon from "../../../components/SvgIcon/index.vue";
defineProps({
title: {
type: String,
required: true
},
icon: {
type: String,
required: true
}
});
</script>
<style lang="scss" scoped>
.el-menu--collapse span {
display: block;
width: 0px;
height: 0px;
overflow: hidden;
}
</style>