123456789101112131415161718192021 |
- <template>
- <router-view />
- </template>
- <script>
- import autoRefresh from './update'
- export default {
- name: 'App',
- created () {
- if (process.env.NODE_ENV !== 'production') {
- return
- }
- autoRefresh()
- }
- }
- </script>
- <style lang="scss">
- #nprogress .bar {
- background: $theme-color !important;
- }
- </style>
|