mirror of
https://github.com/jumpserver/lina.git
synced 2025-10-22 08:08:39 +00:00
22 lines
295 B
Vue
22 lines
295 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view v-if="isRouterAlive" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
name: 'App',
|
|
computed: {
|
|
...mapState({
|
|
isRouterAlive: state => state.common.isRouterAlive
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|