style(prettier): reset code style with prettier

This commit is contained in:
落小梅
2021-10-12 11:30:07 +08:00
parent aee99c49c9
commit 2b59e008f3
148 changed files with 4296 additions and 4191 deletions

View File

@@ -6,4 +6,4 @@ Component.install = (app: App) => {
app.component(Component.name || 'LayRow', Component)
}
export default Component as IDefineComponent
export default Component as IDefineComponent

View File

@@ -1,14 +1,13 @@
<template>
<div class="layui-row" :class="[space?'layui-col-space'+space:'']">
<slot></slot>
<div class="layui-row" :class="[space ? 'layui-col-space' + space : '']">
<slot />
</div>
</template>
<script setup name="LayRow" lang="ts">
import { defineProps } from 'vue'
const props =
defineProps<{
space?: string
}>()
const props = defineProps<{
space?: string
}>()
</script>