Skip to content
This repository was archived by the owner on Dec 6, 2021. It is now read-only.

Commit fda9525

Browse files
authored
Merge pull request #36 from b2nil/dev
Dev
2 parents dd2fc05 + 0473e35 commit fda9525

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.editorconfig

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ root = true
44
[*]
55
indent_style = space
66
indent_size = 2
7+
tab_size = 2
78
charset = utf-8
89
trim_trailing_whitespace = true
910
insert_final_newline = true

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ yarn add taro-ui-vue3
6060
- [] 组件展示页面
6161
- [] theme
6262

63-
- [x] 兼容 h5
64-
63+
- [] 将组件所需的 style 文件移动至组件所在目录,按需引用时,只需引用组件即可,无需再额外引用样式
64+
- [] VirtualList (视需要)
65+
- [] Skeleton (视需要)
6566

6667
## 已知问题
6768
- Alipay 小程序端

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"global.d.ts"
3131
],
3232
"author": "Ken Ho <b2nil>",
33-
"homepage": "https://github.com/b2nil/taro-ui-vue3",
33+
"homepage": "https://b2nil.github.io/taro-ui-vue3",
3434
"repository": {
3535
"type": "git",
3636
"url": "[email protected]:b2nil/taro-ui-vue3.git"
@@ -109,4 +109,4 @@
109109
"typescript": "^3.7.0",
110110
"vue-loader": "^16.0.0-beta.7"
111111
}
112-
}
112+
}

src/components/tabs/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ const AtTabs = defineComponent({
278278
class: 'at-tabs__underline',
279279
style: underlineStyle.value
280280
}),
281-
{ default: () => slots.default && slots.default() }
281+
slots.default && slots.default()
282282
]
283283
})
284284
]

0 commit comments

Comments
 (0)