mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
31 lines
608 B
Vue
31 lines
608 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
isActive: boolean;
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
isActive: false
|
|
});
|
|
|
|
const emit = defineEmits<{
|
|
(e: "toggleClick"): void;
|
|
}>();
|
|
|
|
const toggleClick = () => {
|
|
emit("toggleClick");
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
class="px-3 mr-1 navbar-bg-hover"
|
|
:title="props.isActive ? '点击折叠' : '点击展开'"
|
|
@click="toggleClick"
|
|
>
|
|
<IconifyIconOffline
|
|
:icon="props.isActive ? 'menu-fold' : 'menu-unfold'"
|
|
class="inline-block align-middle hover:text-primary dark:hover:!text-white"
|
|
/>
|
|
</div>
|
|
</template>
|