在括号中补充条件编译代码,实现跨端兼容:h5端的界面:
(含图)
微信小程序的界面:
(含图)
代码:
<template>
<view>
<view class="title">您经常使用的设备或程序是:</view>
<checkbox-group name="">
( )
<label>
<checkbox value="computer" /><text>电脑</text>
</label>
<label>
<checkbox value="phone" /><text>手机</text>
</label>
( )
( )
<label>
<checkbox value="weixin" /><text>微信小程序</text>
</label>
<label>
<checkbox value="app" /><text>app</text>
</label>
( )
</checkbox-group>
</view>
</template>
<style>
.title{
margin-bottom: 15rpx;
( )
font-size: 48rpx;
color: #990000;
( )
( )
font-size: 48rpx;
font-weight: bold;
( )
}
</style>