Revert "Revert "update 构成表单页的种子""

This reverts commit 43a3184bba.
This commit is contained in:
2021-05-12 23:24:44 +08:00
parent 43a3184bba
commit 6c4ef23743
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>