19 lines
344 B
Vue
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>
|