liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
  <div id="app">
    <router-view />
    <notifications group="foo" />
    <vLoading :loadinger="loading" />
  </div>
</template>
 
<style src="@/vendor/styles/bootstrap.scss" lang="scss"></style>
<style src="@/vendor/styles/appwork.scss" lang="scss"></style>
<!--<style src="@/vendor/styles/theme-corporate.scss" lang="scss"></style> -->
<style src="@/vendor/styles/theme-basic.scss" lang="scss"></style>
<style src="@/vendor/styles/colors.scss" lang="scss"></style>
<style src="@/vendor/styles/uikit.scss" lang="scss"></style>
<style src="./style.scss" lang="scss"></style>
 
<script>
export default {
  name: 'app',
  metaInfo: {
    title: 'Index',
    titleTemplate: '应用中心-%s'
  },
  computed: {
    loading() {
      return this.$store.state.loading
    }
  },
  updated () {
    // Remove loading state
    setTimeout(() => document.body.classList.remove('app-loading'), 1)
  }
}
</script>