[新增] card 组件

This commit is contained in:
就眠仪式
2021-09-27 08:43:12 +08:00
parent 81785521f6
commit 80952a2172
9 changed files with 61 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
::: demo
<template>
<lay-card>
<template v-slot:header>
标题
</template>
<template v-slot:body>
内容
</template>
</lay-card>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
:::