GITLAB

SxhGroup / sxhPersonalCenterZLB

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • sxhpersonalcenterzlb
  • src
  • App.vue
  • 6efe1a3b   feat: 出行人新增性别,选家长时提示 Browse Code »
    夏洋涛
    2021-10-20 15:34:02 +0800  
App.vue 382 Bytes
Edit Raw Blame History
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
<template>
  <div id="app">
    <keep-alive>
      <router-view v-if="this.$route.meta.keepAlive" />
    </keep-alive>
    
    <router-view v-if="!this.$route.meta.keepAlive" />
  </div>
</template>
<script>
export default {
  mounted () {
  },
  methods: {
  }
}
</script>
<style>
html,
body,
#app {
  height: 100%;
  color: #333333;
  font-size: 0;
}
p {
  margin: 0;
}
</style>