Update eslint config

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-01-05 18:54:00 +01:00
parent 900afbbb6b
commit 6bbfe00474
37 changed files with 540 additions and 543 deletions

View File

@@ -22,23 +22,20 @@
<template>
<div>
<collection-list v-if="boardId" :id="boardId" :name="boardTitle"
type="deck"
/>
<CollectionList v-if="boardId"
:id="boardId"
:name="boardTitle"
type="deck" />
</div>
</template>
<script>
import { CollectionList } from 'nextcloud-vue-collections'
import Vue from 'vue'
import PopoverMenu from '@nextcloud/vue/dist/Components/PopoverMenu'
Vue.component('popover-menu', PopoverMenu)
export default {
name: 'CollaborationView',
components: {
CollectionList: CollectionList
CollectionList: CollectionList,
},
computed: {
boardId() {
@@ -52,7 +49,7 @@ export default {
return '' + this.$root.model.title
}
return ''
}
}
},
},
}
</script>