mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-12-01 14:40:44 +00:00
28 lines
551 B
Vue
28 lines
551 B
Vue
<template>
|
|
<div id="app">
|
|
<keep-alive>
|
|
<router-view v-if="$route.meta.keepAlive" />
|
|
</keep-alive>
|
|
<router-view v-if="!$route.meta.keepAlive" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.page-pagination{
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
}
|
|
.cardBox{
|
|
padding: 20px 20px 0;
|
|
background-color: #fff;
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
|
|
margin-bottom: 15px;
|
|
border-radius: 4px;
|
|
}
|
|
</style>
|