Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcsjsb-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcsjsb-web
  • src
  • layout
  • components
  • AppMain.vue
  • renchao@pashanhoo.com's avatar
    style:数据上报 · b3b6b266
    b3b6b266 Browse Files
    renchao@pashanhoo.com committed 2023-05-12 10:48:55 +0800
AppMain.vue 318 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<!--
 * @Description: 
 * @Autor: renchao
 * @LastEditTime: 2023-03-28 10:12:27
-->
<template>
  <transition name="fade-transform" mode="out-in">
    <router-view />
  </transition>
</template>
<script>
export default {
  name: 'AppMain',
  computed: {
    key () {
      return this.$route.path
    }
  }
}
</script>