[文档] 新增 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

@@ -1,11 +0,0 @@
.grid-demo-bg1 {
background-color: #63BA79;
}
.grid-demo {
padding: 10px;
line-height: 50px;
border-radius: 4px;
text-align: center;
background-color: #79C48C;
color: #fff;
}

View File

@@ -66,7 +66,6 @@ img {
white-space: nowrap
}
blockquote,
body,
button,
dd,

View File

@@ -2,7 +2,6 @@ import type { App } from 'vue'
import type { IDefineComponent, InstallOptions } from './module/type/index'
import "./css/layui.css"
import "./css/all.css"
import LayRadio from './module/radio/index'
import LayButton from './module/button/index'
import LayButtonContainer from './module/buttonContainer/index'

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>