feat: migrate IndexBar component

This commit is contained in:
chenjiahan 2020-08-17 10:49:27 +08:00
parent 6c85294d35
commit f956d1ab3b
4 changed files with 17 additions and 11 deletions

View File

@ -65,4 +65,6 @@ module.exports = [
'swipe',
'swipe-item',
'image-preview',
'index-bar',
'index-anchor',
];

View File

@ -39,7 +39,9 @@ export default createComponent({
},
mounted() {
this.height = this.$el.offsetHeight;
this.$nextTick(() => {
this.height = this.$el.offsetHeight;
});
},
methods: {
@ -57,7 +59,7 @@ export default createComponent({
style={this.anchorStyle}
class={[bem({ sticky }), { [BORDER_BOTTOM]: sticky }]}
>
{this.slots('default') || this.index}
{this.$slots.default ? this.$slots.default() : this.index}
</div>
</div>
);

View File

@ -58,6 +58,8 @@ export default createComponent({
},
},
emits: ['select'],
data() {
return {
activeAnchorIndex: null,
@ -245,7 +247,7 @@ export default createComponent({
>
{Indexes}
</div>
{this.slots('default')}
{this.$slots.default?.()}
</div>
);
},

View File

@ -290,10 +290,10 @@ module.exports = {
path: 'grid',
title: 'Grid 宫格',
},
// {
// path: 'index-bar',
// title: 'IndexBar 索引栏',
// },
{
path: 'index-bar',
title: 'IndexBar 索引栏',
},
{
path: 'nav-bar',
title: 'NavBar 导航栏',
@ -624,10 +624,10 @@ module.exports = {
path: 'grid',
title: 'Grid',
},
// {
// path: 'index-bar',
// title: 'IndexBar',
// },
{
path: 'index-bar',
title: 'IndexBar',
},
{
path: 'nav-bar',
title: 'NavBar',