mirror of
https://github.com/dataease/dataease.git
synced 2026-05-20 19:48:18 +08:00
17 lines
208 B
Vue
17 lines
208 B
Vue
<template>
|
|
<el-container class="main-container" direction="vertical">
|
|
<slot></slot>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: "LayoutMain",
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|