mirror of
https://github.com/owntone/owntone-server.git
synced 2025-07-19 05:28:56 -04:00
[web] Remove useless app div element
This commit is contained in:
parent
d1c2f0f9fd
commit
cdbce17731
@ -1,26 +1,24 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<navbar-top />
|
||||||
<navbar-top />
|
<vue-progress-bar class="has-background-info" />
|
||||||
<vue-progress-bar class="has-background-info" />
|
<router-view v-slot="{ Component }">
|
||||||
<router-view v-slot="{ Component }">
|
<component :is="Component" />
|
||||||
<component :is="Component" />
|
</router-view>
|
||||||
</router-view>
|
<modal-dialog-remote-pairing
|
||||||
<modal-dialog-remote-pairing
|
:show="pairing_active"
|
||||||
:show="pairing_active"
|
@close="pairing_active = false"
|
||||||
@close="pairing_active = false"
|
/>
|
||||||
/>
|
<modal-dialog-update
|
||||||
<modal-dialog-update
|
:show="show_update_dialog"
|
||||||
:show="show_update_dialog"
|
@close="show_update_dialog = false"
|
||||||
@close="show_update_dialog = false"
|
/>
|
||||||
/>
|
<notification-list v-show="!show_burger_menu" />
|
||||||
<notification-list v-show="!show_burger_menu" />
|
<navbar-bottom />
|
||||||
<navbar-bottom />
|
<div
|
||||||
<div
|
v-show="show_burger_menu || show_player_menu"
|
||||||
v-show="show_burger_menu || show_player_menu"
|
class="overlay-fullscreen"
|
||||||
class="overlay-fullscreen"
|
@click="show_burger_menu = show_player_menu = false"
|
||||||
@click="show_burger_menu = show_player_menu = false"
|
/>
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user