mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-12 23:42:32 -04:00
[web] Streamline naming of components
This commit is contained in:
parent
6481d6f0ee
commit
a968401d9f
@ -12,7 +12,7 @@
|
||||
:show="showUpdateDialog"
|
||||
@close="showUpdateDialog = false"
|
||||
/>
|
||||
<notification-list v-show="!showBurgerMenu" />
|
||||
<list-notifications v-show="!showBurgerMenu" />
|
||||
<navbar-bottom />
|
||||
<div
|
||||
v-show="showBurgerMenu || showPlayerMenu"
|
||||
@ -22,11 +22,11 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import ListNotifications from '@/components/ListNotifications.vue'
|
||||
import ModalDialogRemotePairing from '@/components/ModalDialogRemotePairing.vue'
|
||||
import ModalDialogUpdate from '@/components/ModalDialogUpdate.vue'
|
||||
import NavbarBottom from '@/components/NavbarBottom.vue'
|
||||
import NavbarTop from '@/components/NavbarTop.vue'
|
||||
import NotificationList from '@/components/NotificationList.vue'
|
||||
import ReconnectingWebSocket from 'reconnectingwebsocket'
|
||||
import { useConfigurationStore } from '@/stores/configuration'
|
||||
import { useLibraryStore } from '@/stores/library'
|
||||
@ -44,11 +44,11 @@ import webapi from '@/webapi'
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
ListNotifications,
|
||||
ModalDialogRemotePairing,
|
||||
ModalDialogUpdate,
|
||||
NavbarBottom,
|
||||
NavbarTop,
|
||||
NotificationList
|
||||
NavbarTop
|
||||
},
|
||||
setup() {
|
||||
return {
|
||||
|
@ -23,7 +23,7 @@
|
||||
import { useNotificationsStore } from '@/stores/notifications'
|
||||
|
||||
export default {
|
||||
name: 'NotificationList',
|
||||
name: 'ListNotifications',
|
||||
setup() {
|
||||
return { notificationsStore: useNotificationsStore() }
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user