Newer
Older
xc-metering-front / src / components / AppContainer / index.vue
liyaguang on 19 Jul 2023 452 bytes first commit
<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>