소스 검색

no message

xiaochan 1 년 전
부모
커밋
1e7edc88fe
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/layout/HeaderV2/Logo.vue

+ 2 - 0
src/layout/HeaderV2/Logo.vue

@@ -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)