chore: commit时格式整理
This commit is contained in:
@@ -5,4 +5,4 @@ Component.install = (app: App) => {
|
||||
app.component(Component.name, Component);
|
||||
};
|
||||
|
||||
export default Component;
|
||||
export default Component;
|
||||
|
||||
@@ -8,17 +8,14 @@ export default {
|
||||
import { withDefaults, inject, Ref } from "vue";
|
||||
|
||||
export interface LayTabItemProps {
|
||||
id: string;
|
||||
title: string;
|
||||
closable?: boolean | string;
|
||||
id: string;
|
||||
title: string;
|
||||
closable?: boolean | string;
|
||||
}
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<LayTabItemProps>(),
|
||||
{
|
||||
closable: true,
|
||||
}
|
||||
);
|
||||
const props = withDefaults(defineProps<LayTabItemProps>(), {
|
||||
closable: true,
|
||||
});
|
||||
|
||||
const active = inject("active");
|
||||
const slotsChange: Ref<boolean> = inject("slotsChange") as Ref<boolean>;
|
||||
|
||||
Reference in New Issue
Block a user