Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
8f5016e3
提交
8f5016e3
authored
10月 27, 2020
作者:
vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: the Button component extends the and attributes
上级
6bffdb5c
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
15 行增加
和
2 行删除
+15
-2
CHANGELOG.zh_CN.md
CHANGELOG.zh_CN.md
+2
-0
index.vue
src/components/Button/index.vue
+12
-1
index.vue
src/views/demo/feat/msg/index.vue
+1
-1
没有找到文件。
CHANGELOG.zh_CN.md
浏览文件 @
8f5016e3
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
### ✨ Features
### ✨ Features
-
新增
`pwa`
功能,可在
`.env.production`
开启
-
新增
`pwa`
功能,可在
`.env.production`
开启
-
Button 组件扩展
`preIcon`
和
`postIcon`
属性用于在文本前后添加图标
### 🎫 Chores
### 🎫 Chores
...
@@ -25,6 +26,7 @@
...
@@ -25,6 +26,7 @@
-
修复热更新时多次注册组件警告问题
-
修复热更新时多次注册组件警告问题
-
修复登录后出现登录标签页
-
修复登录后出现登录标签页
-
修复路由切换参数消失问题
## 2.0.0-rc.5 (2020-10-26)
## 2.0.0-rc.5 (2020-10-26)
...
...
src/components/Button/index.vue
浏览文件 @
8f5016e3
<
template
>
<
template
>
<Button
v-bind=
"getBindValue"
:class=
"[getColor, $attrs.class]"
>
<Button
v-bind=
"getBindValue"
:class=
"[getColor, $attrs.class]"
>
<template
#[
item
]="
data
"
v-for=
"item in Object.keys($slots)"
>
<
!--
<
template
#[
item
]="
data
"
v-for=
"item in Object.keys($slots)"
>
<slot
:name=
"item"
v-bind=
"data"
/>
<slot
:name=
"item"
v-bind=
"data"
/>
</
template
>
-->
<
template
#
default=
"data"
>
<g-icon
:icon=
"preIcon"
class=
"mr-1"
v-if=
"preIcon"
/>
<slot
v-bind=
"data"
/>
<g-icon
:icon=
"preIcon"
class=
"ml-1"
v-if=
"postIcon"
/>
</
template
>
</
template
>
</Button>
</Button>
</template>
</template>
...
@@ -44,6 +49,12 @@
...
@@ -44,6 +49,12 @@
type
:
Boolean
as
PropType
<
boolean
>
,
type
:
Boolean
as
PropType
<
boolean
>
,
default
:
false
,
default
:
false
,
},
},
preIcon
:
{
type
:
String
as
PropType
<
string
>
,
},
postIcon
:
{
type
:
String
as
PropType
<
string
>
,
},
},
},
setup
(
props
,
{
attrs
})
{
setup
(
props
,
{
attrs
})
{
const
getListeners
=
computed
(()
=>
{
const
getListeners
=
computed
(()
=>
{
...
...
src/views/demo/feat/msg/index.vue
浏览文件 @
8f5016e3
<
template
>
<
template
>
<div
class=
"p-4"
>
<div
class=
"p-4"
>
<CollapseContainer
class=
"px-20 bg-white w-full h-32 rounded-md"
title=
"Message"
>
<CollapseContainer
class=
"px-20 bg-white w-full h-32 rounded-md"
title=
"Message"
>
<a-button
@
click=
"infoMsg('Info message')"
class=
"mr-2"
>
Info
</a-button>
<a-button
@
click=
"infoMsg('Info message')"
class=
"mr-2"
>
Info
</a-button>
<a-button
@
click=
"successMsg('Success message')"
class=
"mr-2"
color=
"success"
>
<a-button
@
click=
"successMsg('Success message')"
class=
"mr-2"
color=
"success"
>
Success
Success
</a-button>
</a-button>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论