一、vue3.2中组件数据可以用在style里
const logoHeight = 44;
<style lang="scss" scoped>
.logo-container {
padding: 10px 0 22px 0;
display: flex;
height: v-bind(logoHeight) + 'px';
justify-content: center;
align-items: center;
flex-wrap: nowrap;
.logo-title {
margin-left: 10px;
font-size: 16px;
color: white;
}
}
</style>