This commit is contained in:
syuilo 2021-04-14 03:23:29 +09:00
parent 3db37e1d52
commit 930127348a
3 changed files with 28 additions and 3 deletions

View file

@ -1,11 +1,11 @@
<template>
<div>
<MkTab v-model:value="with_" class="_gap _section">
<div class="yrzkoczt" v-sticky-container>
<MkTab v-model:value="with_" class="_gap tab">
<option :value="null">{{ $ts.notes }}</option>
<option value="replies">{{ $ts.notesAndReplies }}</option>
<option value="files">{{ $ts.withFiles }}</option>
</MkTab>
<XNotes ref="timeline" class="_section _noGap_" :pagination="pagination" @before="$emit('before')" @after="e => $emit('after', e)"/>
<XNotes ref="timeline" class="_noGap_" :pagination="pagination" @before="$emit('before')" @after="e => $emit('after', e)"/>
</div>
</template>
@ -56,3 +56,11 @@ export default defineComponent({
},
});
</script>
<style lang="scss" scoped>
.yrzkoczt {
> .tab {
background: var(--bg);
}
}
</style>