diff --git a/src/action-sheet/index.js b/src/action-sheet/index.js
index ca26d0f97..4335ef1bb 100644
--- a/src/action-sheet/index.js
+++ b/src/action-sheet/index.js
@@ -135,8 +135,10 @@ export default createComponent({
>
{renderHeader()}
{renderDescription()}
- {renderOptions()}
- {slots.default &&
{slots.default()}
}
+
+ {renderOptions()}
+ {slots.default?.()}
+
{renderCancel()}
);
diff --git a/src/action-sheet/index.less b/src/action-sheet/index.less
index 3a776e4f7..9928c7bcb 100644
--- a/src/action-sheet/index.less
+++ b/src/action-sheet/index.less
@@ -2,9 +2,18 @@
@import '../style/mixins/hairline';
.van-action-sheet {
+ display: flex;
+ flex-direction: column;
max-height: @action-sheet-max-height;
+ overflow: hidden;
color: @action-sheet-item-text-color;
+ &__content {
+ flex: 1;
+ overflow-y: auto;
+ -webkit-overflow-scrolling: touch;
+ }
+
&__item,
&__cancel {
display: block;
@@ -42,6 +51,8 @@
}
&__cancel {
+ flex-shrink: 0;
+ box-sizing: border-box;
color: @action-sheet-cancel-text-color;
}
@@ -59,6 +70,7 @@
}
&__header {
+ flex-shrink: 0;
font-weight: @font-weight-bold;
font-size: @action-sheet-header-font-size;
line-height: @action-sheet-header-height;
@@ -67,6 +79,7 @@
&__description {
position: relative;
+ flex-shrink: 0;
padding: 20px @padding-md;
color: @action-sheet-description-color;
font-size: @action-sheet-description-font-size;
diff --git a/src/action-sheet/test/__snapshots__/index.legacy.js.snap b/src/action-sheet/test/__snapshots__/index.legacy.js.snap
index a5685dfb5..932b1a226 100644
--- a/src/action-sheet/test/__snapshots__/index.legacy.js.snap
+++ b/src/action-sheet/test/__snapshots__/index.legacy.js.snap
@@ -1,10 +1,11 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`callback events 1`] = `
-
`;
+
+exports[`insert tab with name dynamically 1`] = `
+
+`;
diff --git a/src/tab/test/insert.legacy.js b/src/tab/test/insert.legacy.js
index bfd4a3edb..3c28b4053 100644
--- a/src/tab/test/insert.legacy.js
+++ b/src/tab/test/insert.legacy.js
@@ -26,6 +26,27 @@ test('insert tab dynamically', async () => {
expect(wrapper).toMatchSnapshot();
});
+test('insert tab with name dynamically', async () => {
+ const wrapper = mount({
+ template: `
+
+ 2
+ 1
+
+ `,
+ data() {
+ return {
+ insert: false,
+ active: [{ name: 'foo', title: 'foo' }],
+ };
+ },
+ });
+
+ await later();
+ wrapper.setData({ insert: true });
+ expect(wrapper).toMatchSnapshot();
+});
+
// this case will throw wierd error in index.spec.js
// so separate it
test('insert tab with child component', async () => {
diff --git a/src/tabs/index.js b/src/tabs/index.js
index 32e0fb94a..e6aeca15f 100644
--- a/src/tabs/index.js
+++ b/src/tabs/index.js
@@ -377,7 +377,7 @@ export default createComponent({
watch(
() => children.length,
() => {
- setCurrentIndexByName(currentName.value || props.active);
+ setCurrentIndexByName(props.active || currentName.value);
setLine();
nextTick(() => {
scrollIntoView(true);