|
@@ -23,8 +23,10 @@ import {computed, defineComponent} from 'vue'
|
|
|
import {useStore} from 'vuex'
|
|
|
import {systemTitle} from '@/config'
|
|
|
import {SYSTEM_CONFIG} from "@/utils/public";
|
|
|
+import {Expand, Fold} from "@element-plus/icons-vue";
|
|
|
|
|
|
export default defineComponent({
|
|
|
+ components: {Fold, Expand},
|
|
|
setup() {
|
|
|
const store = useStore()
|
|
|
const isCollapse = computed(() => store.state.app.isCollapse)
|