mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
38 lines
852 B
Vue
38 lines
852 B
Vue
<template>
|
|
<div id="photoprism-help" class="p-page p-page-help">
|
|
<v-toolbar flat color="secondary" :dense="$vuetify.breakpoint.smAndDown">
|
|
<v-toolbar-title>
|
|
<translate>Help</translate>
|
|
</v-toolbar-title>
|
|
|
|
<v-spacer></v-spacer>
|
|
|
|
<v-btn icon href="https://www.photoprism.app/" target="_blank" class="action-info" :title="$gettext('About')">
|
|
<v-icon size="26">info</v-icon>
|
|
</v-btn>
|
|
</v-toolbar>
|
|
|
|
<v-container fluid class="px-4 py-2">
|
|
<p-help-websockets></p-help-websockets>
|
|
</v-container>
|
|
|
|
<p-about-footer></p-about-footer>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import PHelpWebsockets from "./help/websockets.vue";
|
|
|
|
export default {
|
|
name: 'PPageHelp',
|
|
components: {
|
|
PHelpWebsockets
|
|
},
|
|
data() {
|
|
return {
|
|
topic: this.$route.params.pathMatch,
|
|
};
|
|
},
|
|
};
|
|
</script>
|