You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
745 B

2 months ago
<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker";
2 months ago
import autofit from "autofit.js";
2 months ago
export default {
name: "App",
components: { ThemePicker },
2 months ago
mounted() {
autofit.init({
dh: 1080,
dw: 1920,
el: "body",
resize: true,
});
},
2 months ago
metaInfo() {
return {
2 months ago
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;
},
};
},
2 months ago
};
</script>
<style scoped>
#app .theme-picker {
display: none;
}
</style>