push
This commit is contained in:
23
lib/saas/view/system/layout/baseContent.vue
Normal file
23
lib/saas/view/system/layout/baseContent.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<!-- @format -->
|
||||
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { defineComponent } from 'vue';
|
||||
export default defineComponent({
|
||||
name: 'NsBaseContent',
|
||||
props: {
|
||||
keepAliveList: {
|
||||
type: Array,
|
||||
default: () => [],
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
return {};
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped></style>
|
||||
Reference in New Issue
Block a user