<script lang="ts" setup name="AppContainer"> // props参数 const props = defineProps({ hasPadding: { type: Boolean, default: true, }, paddingSize: { type: String, default: '10px', }, background: { type: String, default: '#00000000', }, }) </script> <template> <div :style="{ 'padding': hasPadding ? paddingSize : '0px', 'background-color': background }" class="app-container"> <slot /> </div> </template>