aboutsummaryrefslogtreecommitdiff
path: root/src/components/interactions/interactions.vue
blob: 751e5d40276be4c1d34945258d29adf850c3b861 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<template>
  <div class="panel panel-default">
    <div class="panel-heading">
      <div class="title">
        Interactions
      </div>
    </div>
    <tab-switcher
      ref="tabSwitcher"
      :onSwitch="onModeSwitch"
      >
      <span data-tab-dummy data-filter="mentions" :label="$t('MENTIONS')"/>
      <span data-tab-dummy data-filter="likes+repeats" :label="$t('LIKES AND REPEATS')"/>
      <span data-tab-dummy data-filter="follows" :label="$t('FOLLOWS')"/>
    </tab-switcher>
    <Notifications
      ref="notifications"
      :noHeading="true"
      :minimalMode="true"
      :filterMode="filterMode"
      />
  </div>
</template>

<script src="./interactions.js"></script>