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

@@ -9,19 +9,18 @@
border ? 'layui-border-' + border : '',
]"
>
<slot></slot>
<slot />
</button>
</template>
<script setup name="LayButton" lang="ts">
import { defineProps } from 'vue'
const props =
defineProps<{
type?: string
size?: string
fluid?: boolean
radius?: boolean
border?: string
}>()
const props = defineProps<{
type?: string
size?: string
fluid?: boolean
radius?: boolean
border?: string
}>()
</script>