28 lines
551 B
Vue
Raw Normal View History

2022-08-02 10:16:07 +08:00
<template>
2022-09-01 18:49:41 +08:00
<div id="app">
<keep-alive>
<router-view v-if="$route.meta.keepAlive" />
</keep-alive>
<router-view v-if="!$route.meta.keepAlive" />
</div>
2022-08-02 10:16:07 +08:00
</template>
<script>
2022-09-01 18:49:41 +08:00
export default {
2022-08-25 11:21:14 +08:00
2022-09-01 18:49:41 +08:00
};
2022-08-02 10:16:07 +08:00
</script>
2022-09-01 18:49:41 +08:00
<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;
}
2022-09-01 18:49:41 +08:00
</style>