1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-29 17:34:36 +02:00

Revert "Use v-t"

This reverts commit 8d049fd498.
This commit is contained in:
syuilo
2020-07-24 21:46:03 +09:00
parent 8d049fd498
commit ad251ddf20
115 changed files with 539 additions and 539 deletions

View File

@@ -1,9 +1,9 @@
<template>
<div class="kjeftjfm" v-size="[{ max: 500 }]">
<div class="with">
<button class="_button" @click="with_ = null" :class="{ active: with_ === null }" v-t="'notes'"></button>
<button class="_button" @click="with_ = 'replies'" :class="{ active: with_ === 'replies' }" v-t="'notesAndReplies'"></button>
<button class="_button" @click="with_ = 'files'" :class="{ active: with_ === 'files' }" v-t="'withFiles'"></button>
<button class="_button" @click="with_ = null" :class="{ active: with_ === null }">{{ $t('notes') }}</button>
<button class="_button" @click="with_ = 'replies'" :class="{ active: with_ === 'replies' }">{{ $t('notesAndReplies') }}</button>
<button class="_button" @click="with_ = 'files'" :class="{ active: with_ === 'files' }">{{ $t('withFiles') }}</button>
</div>
<x-notes ref="timeline" :pagination="pagination" @before="$emit('before')" @after="e => $emit('after', e)"/>
</div>