mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
13 lines
198 B
Vue
13 lines
198 B
Vue
<template>
|
|
<main class="el-main">
|
|
<slot></slot>
|
|
</main>
|
|
</template>
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
|
|
export default defineComponent({
|
|
name: 'ElMain',
|
|
})
|
|
</script>
|