This commit is contained in:
Ivan
2021-06-07 11:56:04 +08:00
commit c3c9fee2fb
1071 changed files with 195655 additions and 0 deletions

8
packages/main/index.js Normal file
View File

@@ -0,0 +1,8 @@
import Main from './src/main';
/* istanbul ignore next */
Main.install = function(Vue) {
Vue.component(Main.name, Main);
};
export default Main;

View File

@@ -0,0 +1,12 @@
<template>
<main class="el-main">
<slot></slot>
</main>
</template>
<script>
export default {
name: 'ElMain',
componentName: 'ElMain'
};
</script>