feat(button): 新增 border 属性, 设置 边框 颜色

This commit is contained in:
就眠仪式 2021-10-11 04:55:37 +08:00
parent bfede81ebf
commit a006f35ff2
3 changed files with 29 additions and 1 deletions

View File

@ -27,7 +27,7 @@
Vue 3.0 的 桌 面 端 组 件 库 , Layui 的 另 一 种 呈 现 方 式 Vue 3.0 的 桌 面 端 组 件 库 , Layui 的 另 一 种 呈 现 方 式
## 快速上手 ## 快速上手 Beta
获得 layui-vue 你只需要使用 npm 引入下述文件: 获得 layui-vue 你只需要使用 npm 引入下述文件:

View File

@ -23,6 +23,32 @@ export default {
::: :::
::: demo 传入 columns 数据,自动生成表格
<template>
<lay-button type="primary">原始按钮</lay-button>
<lay-button type="primary" border="green">默认按钮</lay-button>
<lay-button type="primary" border="blue">百搭按钮</lay-button>
<lay-button type="primary" border="orange">暖色按钮</lay-button>
<lay-button type="primary" border="red">警告按钮</lay-button>
<lay-button type="primary" border="black">禁用按钮</lay-button>
</template>
<script>
import { ref } from 'vue'
export default {
setup() {
return {
}
}
}
</script>
:::
::: demo 传入 columns 数据,自动生成表格 ::: demo 传入 columns 数据,自动生成表格
<template> <template>

View File

@ -6,6 +6,7 @@
size ? 'layui-btn-' + size : '', size ? 'layui-btn-' + size : '',
fluid ? 'layui-btn-fluid' : '', fluid ? 'layui-btn-fluid' : '',
radius ? 'layui-btn-radius' : '', radius ? 'layui-btn-radius' : '',
border ? 'layui-border-' + border : '',
]" ]"
> >
<slot></slot> <slot></slot>
@ -21,5 +22,6 @@ const props =
size?: string size?: string
fluid?: boolean fluid?: boolean
radius?: boolean radius?: boolean
border?: string
}>() }>()
</script> </script>