update 增加了开发文档的编写

This commit is contained in:
2021-04-27 18:22:32 +08:00
parent 0b18832602
commit bfb61e728c
17 changed files with 711 additions and 104 deletions

View File

@@ -1,5 +1,14 @@
<template>
<section :class="$root.global.settings.container || 'container-fluid'">
<section :class="mode || $root.global.settings.container || 'container-fluid'">
<slot />
</section>
</template>
</template>
<script>
export default {
props: {
mode: {
type: String,
},
},
};
</script>