mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
add tabs icons in export
This commit is contained in:
parent
cdfbd01a07
commit
c7ae5420dc
1 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@
|
||||||
Search(
|
Search(
|
||||||
:filters='filters'
|
:filters='filters'
|
||||||
@update='f => filters = f')
|
@update='f => filters = f')
|
||||||
v-tabs(v-model='type' show-arrows)
|
v-tabs(v-model='type' show-arrows :next-icon='mdiChevronRight' :prev-icon='mdiChevronLeft')
|
||||||
|
|
||||||
//- TOFIX
|
//- TOFIX
|
||||||
//- v-tab {{$t('common.email')}}
|
//- v-tab {{$t('common.email')}}
|
||||||
|
@ -86,7 +86,7 @@ import { mapState } from 'vuex'
|
||||||
import FollowMe from '../components/FollowMe'
|
import FollowMe from '../components/FollowMe'
|
||||||
import Search from '@/components/Search'
|
import Search from '@/components/Search'
|
||||||
import clipboard from '../assets/clipboard'
|
import clipboard from '../assets/clipboard'
|
||||||
import { mdiContentCopy } from '@mdi/js'
|
import { mdiContentCopy, mdiChevronRight, mdiChevronLeft } from '@mdi/js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Exports',
|
name: 'Exports',
|
||||||
|
@ -104,7 +104,7 @@ export default {
|
||||||
},
|
},
|
||||||
data ({ $store }) {
|
data ({ $store }) {
|
||||||
return {
|
return {
|
||||||
mdiContentCopy,
|
mdiContentCopy, mdiChevronLeft, mdiChevronRight,
|
||||||
type: 'rss',
|
type: 'rss',
|
||||||
notification: { email: '' },
|
notification: { email: '' },
|
||||||
list: {
|
list: {
|
||||||
|
|
Loading…
Reference in a new issue