update 构成表单页的种子

This commit is contained in:
2021-05-12 23:07:40 +08:00
parent ead8ca4063
commit c74448b1fc
32 changed files with 1475 additions and 980 deletions

View File

@@ -1,5 +1,10 @@
<template>
<section :class="mode || $root.global.settings.container || 'container-fluid'">
<section
:class="{
[mode || $root.global.settings.container || 'container-fluid']: true,
'container-flex': flex
}"
>
<slot />
</section>
</template>
@@ -9,6 +14,10 @@ export default {
mode: {
type: String,
},
flex: {
type: Boolean,
default: false,
},
},
};
</script>