photoprism/frontend/src/photoprism.vue
Michael Mayer c8383ce241 Frontend: Improve Onyx theme
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-01-20 12:20:54 +01:00

28 lines
535 B
Vue

<template>
<div id="photoprism">
<p-loading-bar height="4"></p-loading-bar>
<p-notify></p-notify>
<v-app :class="$route.meta.background">
<p-navigation></p-navigation>
<v-content>
<router-view></router-view>
</v-content>
</v-app>
<p-photo-viewer></p-photo-viewer>
</div>
</template>
<script>
import "./css/app.css";
export default {
name: 'photoprism',
computed: {},
methods: {},
};
</script>