layui/src/module/button/index.vue

19 lines
344 B
Vue
Raw Normal View History

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