在使用uni-app开发微信小程序时,设置原生样式后无效
test1.vue文件
- <template>
- <view>
- <u-radio-group v-model="value" placement="row" style="background: red;">
- <u-radio label="是" name="1">u-radio>
- <u-radio style="margin-left: 50upx;" label="否" name="0">u-radio>
- u-radio-group>
- view>
- template>
-
- <script>
- export default {
- data() {
- return {
- value:''
- }
- },
- methods: {
-
- }
- }
- script>
-
- <style>
-
- style>
在chrome浏览器中运行时,样式有效,截图如下:

在微信小程序中运行时,样式失效,如下截图: