123456789101112131415161718192021222324252627282930313233 |
- <template>
- <!--<dv-full-screen-container id="app">-->
- <div id="app">
- <router-view />
- </div>
- <!--</dv-full-screen-container>-->
- </template>
- <script>
- export default {
- name: 'App',
- 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
- }
- }
- }
- }
- </script>
- <style>
- html,body{
- margin:0;
- height:100%;
- width:100%;
- }
- #app{
- height:100%!important;
- width:100%!important;
- }
- </style>
|