photoprism/frontend/src/app/main.vue

36 lines
646 B
Vue
Raw Normal View History

<template>
<div id="app">
<app-loading-bar ref="loadingBar" height="4"></app-loading-bar>
<app-alert></app-alert>
2018-09-06 21:58:16 +00:00
<v-app>
<app-navigation></app-navigation>
2018-09-06 21:58:16 +00:00
<v-content>
<router-view></router-view>
</v-content>
</v-app>
</div>
</template>
<script>
export default {
name: 'app',
computed: {},
methods: {
login() {
this.$refs.loginDialog.open();
},
logout() {
this.$session.logout();
},
},
};
</script>
<style lang="css">
</style>