mirror of https://github.com/ElemeFE/element
13 lines
168 B
Vue
13 lines
168 B
Vue
![]() |
<template>
|
||
|
<main class="el-main">
|
||
|
<slot></slot>
|
||
|
</main>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'ElMain',
|
||
|
componentName: 'ElMain'
|
||
|
};
|
||
|
</script>
|