29 lines
637 B
Vue
29 lines
637 B
Vue
<template>
|
|
<div class="layout-wrap">
|
|
<!-- <LayoutHeader /> -->
|
|
<LayoutContent />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
components: {
|
|
// LayoutHeader: () => import('@/pages/layout/components/LayoutHeader'),
|
|
// LayoutContent: () => import('./components/LayoutContent.vue'),
|
|
LayoutContent: () => import('./components/LayoutContentNew.vue'),
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
async created() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
|
|
</style> |