chore: commit时格式整理

This commit is contained in:
dingyongya
2022-02-16 17:22:55 +08:00
parent c2b9d36868
commit 7f3674d532
95 changed files with 823 additions and 852 deletions

View File

@@ -1,12 +1,12 @@
<script lang="ts">
export default {
name: "LayLine"
}
name: "LayLine",
};
</script>
<script setup lang="ts">
export interface LayLineProps {
theme?: string;
theme?: string;
}
const props = defineProps<LayLineProps>();
@@ -14,4 +14,4 @@ const props = defineProps<LayLineProps>();
<template>
<hr :class="['layui-border-' + theme]" />
</template>
</template>