dashboard
repositories
filestore
activity
search
login
Stockzhjys
/
admin-vue
Stock综合交易所
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
first commit
dcc
2024-06-13
d583372447e4958fed5b5d5004f98baf6ce433f1
[Stockzhjys/admin-vue.git]
/
src
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
<transition name="fade">
<router-view></router-view>
</transition>
</template>
<script>
export default {
computed: {
key () {
return this.$route.path + Math.random()
}
}
}
</script>