[文档] 新增 color 文档, 修正 lay-block 组件样式
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -66,7 +66,6 @@ img {
|
||||
white-space: nowrap
|
||||
}
|
||||
|
||||
blockquote,
|
||||
body,
|
||||
button,
|
||||
dd,
|
||||
|
||||
@@ -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'
|
||||
|
||||
@@ -5,6 +5,5 @@
|
||||
</template>
|
||||
|
||||
<script setup name="LayBreadcrumb" lang="ts">
|
||||
import { useSlots } from "vue";
|
||||
|
||||
</script>
|
||||
|
||||
9
src/module/count/index.ts
Normal file
9
src/module/count/index.ts
Normal 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
|
||||
9
src/module/count/index.vue
Normal file
9
src/module/count/index.vue
Normal file
@@ -0,0 +1,9 @@
|
||||
<template>
|
||||
<span class="layui-count">
|
||||
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<script setup name="LayCount" lang="ts">
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user