Skip to content

Commit

Permalink
fix(ui): fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
linghaoSu committed Nov 27, 2023
1 parent a873aa3 commit 0a6cf90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
11 changes: 2 additions & 9 deletions packages/ui-bindings/shared/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,8 @@ export async function unmountMicroApp(microApp: MicroAppType) {
}

export const omitSharedProps = (props: Partial<SharedProps>) => {
return omit(props, [
'wrapperClassName',
'className',
'lifeCycles',
'settings',
'entry',
'name',
]);
}
return omit(props, ['wrapperClassName', 'className', 'lifeCycles', 'settings', 'entry', 'name']);
};

export function mountMicroApp({
setLoading,
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-bindings/vue/src/MicroApp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { PropType} from 'vue';
import type { PropType } from 'vue';
import { computed, defineComponent, h, onMounted, reactive, ref, toRefs, watch } from 'vue';
import type { AppConfiguration, LifeCycles } from 'qiankun';
import type { MicroAppType } from '@qiankunjs/ui-shared';
Expand Down

0 comments on commit 0a6cf90

Please sign in to comment.