[新增] lay-line 分割线组件
This commit is contained in:
		
							parent
							
								
									4abe76d8b9
								
							
						
					
					
						commit
						eec76e2cb1
					
				
							
								
								
									
										25
									
								
								docs/docs/zh-CN/components/line.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								docs/docs/zh-CN/components/line.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,25 @@
 | 
			
		||||
::: demo
 | 
			
		||||
 | 
			
		||||
<template>
 | 
			
		||||
  <lay-line></lay-line>
 | 
			
		||||
  <lay-line theme="red"></lay-line>
 | 
			
		||||
  <lay-line theme="orange"></lay-line>
 | 
			
		||||
  <lay-line theme="green"></lay-line>
 | 
			
		||||
  <lay-line theme="cyan"></lay-line>
 | 
			
		||||
  <lay-line theme="blue"></lay-line>
 | 
			
		||||
  <lay-line theme="black"></lay-line>
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script>
 | 
			
		||||
import { ref } from 'vue'
 | 
			
		||||
 | 
			
		||||
export default {
 | 
			
		||||
  setup() {
 | 
			
		||||
 | 
			
		||||
    return {
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
</script>
 | 
			
		||||
 | 
			
		||||
:::
 | 
			
		||||
@ -1,11 +1,8 @@
 | 
			
		||||
<template>
 | 
			
		||||
 | 
			
		||||
  <div class="width:100%;height:300px">
 | 
			
		||||
    <lay-layout>
 | 
			
		||||
      <lay-header>
 | 
			
		||||
      <lay-logo>
 | 
			
		||||
        layui-vue
 | 
			
		||||
      </lay-logo>
 | 
			
		||||
        <lay-logo> layui-vue </lay-logo>
 | 
			
		||||
      </lay-header>
 | 
			
		||||
      <lay-side>
 | 
			
		||||
        <ul>
 | 
			
		||||
@ -18,6 +15,7 @@
 | 
			
		||||
          <li><router-link to="/zh-CN/components/form">表单</router-link></li>
 | 
			
		||||
          <li><router-link to="/zh-CN/components/badge">徽章</router-link></li>
 | 
			
		||||
          <li><router-link to="/zh-CN/components/block">区块</router-link></li>
 | 
			
		||||
          <li><router-link to="/zh-CN/components/line">分割</router-link></li>
 | 
			
		||||
        </ul>
 | 
			
		||||
      </lay-side>
 | 
			
		||||
      <lay-body>
 | 
			
		||||
 | 
			
		||||
@ -59,6 +59,11 @@ const zhCN = [
 | 
			
		||||
        path: '/zh-CN/components/block',
 | 
			
		||||
        component: () => import('../../docs/zh-CN/components/block.md'),
 | 
			
		||||
        meta: { title: '辅助' },
 | 
			
		||||
      },
 | 
			
		||||
      {
 | 
			
		||||
        path: '/zh-CN/components/line',
 | 
			
		||||
        component: () => import('../../docs/zh-CN/components/line.md'),
 | 
			
		||||
        meta: { title: '分割' },
 | 
			
		||||
      }
 | 
			
		||||
    ],
 | 
			
		||||
  },
 | 
			
		||||
 | 
			
		||||
@ -22,6 +22,7 @@ import LayRow from "./module/row/index"
 | 
			
		||||
import LayInput from "./module/input/index"
 | 
			
		||||
import LayBadge from "./module/badge/index"
 | 
			
		||||
import LayBlock from "./module/block/index"
 | 
			
		||||
import LayLine from "./module/line/index"
 | 
			
		||||
 | 
			
		||||
const components: Record<string, IDefineComponent> = {
 | 
			
		||||
  LayRadio,
 | 
			
		||||
@ -42,7 +43,8 @@ const components: Record<string, IDefineComponent> = {
 | 
			
		||||
  LayCol,
 | 
			
		||||
  LayInput,
 | 
			
		||||
  LayBadge,
 | 
			
		||||
  LayBlock
 | 
			
		||||
  LayBlock,
 | 
			
		||||
  LayLine
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
const install = (app: App, options?: InstallOptions): void => {
 | 
			
		||||
@ -75,6 +77,7 @@ export {
 | 
			
		||||
  LayInput,
 | 
			
		||||
  LayBadge,
 | 
			
		||||
  LayBlock,
 | 
			
		||||
  LayLine,
 | 
			
		||||
  install,
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										9
									
								
								src/module/line/index.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								src/module/line/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 || 'LayLine', Component)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default Component as IDefineComponent
 | 
			
		||||
							
								
								
									
										12
									
								
								src/module/line/index.vue
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								src/module/line/index.vue
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,12 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <hr :class="['layui-border-' + theme]" />
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script setup name="LayLine" lang="ts">
 | 
			
		||||
import { defineProps } from '@vue/runtime-core'
 | 
			
		||||
 | 
			
		||||
const props =
 | 
			
		||||
  defineProps<{
 | 
			
		||||
    theme?: string
 | 
			
		||||
  }>()
 | 
			
		||||
</script>
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user