feat(components): 添加多页签Tab点击后自动往中间滚动

This commit is contained in:
Soybean
2021-11-25 00:50:55 +08:00
parent 1ffb75afce
commit 8ce627a397
6 changed files with 48 additions and 8 deletions

View File

@ -0,0 +1,7 @@
import type { Ref } from 'vue';
import BScroll from '@better-scroll/core';
/** BetterScroll暴露出的数据的类型 */
export interface ExposeBetterScroll {
bsInstance: Ref<BScroll>;
}

View File

@ -1,5 +1,6 @@
export * from './theme';
export * from './system';
export * from './route';
export * from './expose';
export * from './service';
export * from './api';