Newer
Older
CorrOLFront / src / components / AppContainer / index.vue
tanyue on 5 Mar 2024 452 bytes 20240305 初始提交
<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>