为什么都没了
This commit is contained in:
23
framework/Web/src/components/container/index.vue
Normal file
23
framework/Web/src/components/container/index.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<section
|
||||
:class="{
|
||||
[mode || $root.global.settings.container || 'container-fluid']: true,
|
||||
'container-flex': flex
|
||||
}"
|
||||
>
|
||||
<slot />
|
||||
</section>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
mode: {
|
||||
type: String,
|
||||
},
|
||||
flex: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user