[文档] 新增 color 文档, 修正 lay-block 组件样式
This commit is contained in:
@@ -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