[文档] 新增 color 文档, 修正 lay-block 组件样式

This commit is contained in:
就眠仪式
2021-09-30 23:49:46 +08:00
parent 7e2f6abc7b
commit 4bad992d9b
14 changed files with 171 additions and 30 deletions

View File

@@ -5,6 +5,5 @@
</template>
<script setup name="LayBreadcrumb" lang="ts">
import { useSlots } from "vue";
</script>

View File

@@ -0,0 +1,9 @@
import type { App } from 'vue'
import Component from './index.vue'
import type { IDefineComponent } from '../type/index'
Component.install = (app: App) => {
app.component(Component.name || 'LayCount', Component)
}
export default Component as IDefineComponent

View File

@@ -0,0 +1,9 @@
<template>
<span class="layui-count">
</span>
</template>
<script setup name="LayCount" lang="ts">
</script>