xiao叶子
xiao叶子
  • 发布:2023-03-24 12:05
  • 更新:2023-03-24 12:05
  • 阅读:179

微信小程序 vue3版本 父子组件 class选择器如何使用?

分类:HBuilderX

父组件 如何改变子组件宽度

<template>  
    <view class="c-div">  
        <c-button></c-button>  
    </view>  
</template>  
<style scoped>  
    .c-div>>>.c-button,  
    .c-div>>>c-button,  
    .c-div .c-button {  
        width: 200rpx;  
    }  
</style>

子组件

<template>  
    <button class="c-button">1</button>  
</template>
2023-03-24 12:05 负责人:无 分享
已邀请:

要回复问题请先登录注册