layui/src/module/button/index.vue
2021-09-27 11:27:36 +08:00

19 lines
344 B
Vue

<template>
<button
class="layui-btn"
:class="[type ? 'layui-btn-' + type : '', size ? 'layui-btn-' + size : '']"
>
<slot></slot>
</button>
</template>
<script setup name="LayButton" lang="ts">
import { defineProps } from '@vue/runtime-core'
const props =
defineProps<{
type?: string
size?: string
}>()
</script>