12345678910111213141516171819202122232425 |
- <template>
- <v-app class="full">
- <router-view />
- </v-app>
- </template>
- <script>
- import autoRefresh from './update'
- export default {
- name: 'App',
- created () {
- if (process.env.NODE_ENV !== 'production') {
- return
- }
- autoRefresh()
- }
- }
- </script>
- <style lang="scss">
- .full {
- height: 100vh;
- width: 100vw;
- overflow: hidden;
- }
- </style>
|