layui/src/module/button/index.vue

15 lines
286 B
Vue
Raw Normal View History

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