diff --git a/src/App.vue b/src/App.vue
index b92ea379..f520b610 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -13,12 +13,16 @@ export default {
components: { ThemePicker },
metaInfo() {
return {
- title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
- titleTemplate: title => {
- return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
- }
- }
- }
+ title:
+ this.$store.state.settings.dynamicTitle &&
+ this.$store.state.settings.title,
+ titleTemplate: (title) => {
+ return title
+ ? `${title} - ${process.env.VUE_APP_TITLE}`
+ : process.env.VUE_APP_TITLE;
+ },
+ };
+ },
};
diff --git a/src/views/info.vue b/src/views/info.vue
new file mode 100644
index 00000000..ad5bb57f
--- /dev/null
+++ b/src/views/info.vue
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+