App.vue 323 B

123456789101112131415161718192021
  1. <template>
  2. <router-view />
  3. </template>
  4. <script>
  5. import autoRefresh from './update'
  6. export default {
  7. name: 'App',
  8. created () {
  9. if (process.env.NODE_ENV !== 'production') {
  10. return
  11. }
  12. autoRefresh()
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. #nprogress .bar {
  18. background: $theme-color !important;
  19. }
  20. </style>