- 发布:2021-10-27 12:56
- 更新:2021-10-27 12:58
- 阅读:328
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX版本号: 3.2.11
示例代码:
格式化前:
<template>
<view :hover-class="hoverClass" :hover-start-time='hoverStartTime' :hover-stay-time='hoverStayTime'
<!-- #ifndef APP-NVUE && MP-ALIPAY && MP-BAIDU && H5 -->
hover-stop-propagation='hoverStopPropagation'
<!-- #endif -->
>
view 组件
</view>
</template>
格式化后
<template>
<view :hover-class="hoverClass" :hover-start-time='hoverStartTime' :hover-stay-time='hoverStayTime' <!-- #ifndef
APP-NVUE && MP-ALIPAY && MP-BAIDU && H5 -->
hover-stop-propagation='hoverStopPropagation'
<!-- #endif -->
>
view 组件
</view>
</template>
格式化后编译不成功。
不会让我把条件编译放外面来解决问题吧?
>
view 组件
</view>
</template>
格式化后
<template>
<view :hover-class="hoverClass" :hover-start-time='hoverStartTime' :hover-stay-time='hoverStayTime' <!-- #ifndef
APP-NVUE && MP-ALIPAY && MP-BAIDU && H5 --> hover-stop-propagation='hoverStopPropagation' <!-- #endif -->
>
view 组件
</view>
</template>
格式化后编译不成功。
不会让我把条件编译放外面来解决问题吧?
操作步骤:
见上
见上
预期结果:
见上
见上
实际结果:
见上
见上
2 个回复
8***@qq.com (作者) - zero
>
view 组件
</view>
</template>
格式化后
<template>
<view :hover-class="hoverClass" :hover-start-time='hoverStartTime' :hover-stay-time='hoverStayTime' <!-- #ifndef
APP-NVUE && MP-ALIPAY && MP-BAIDU && H5 --> hover-stop-propagation='hoverStopPropagation' <!-- #endif -->
>
view 组件
</view>
</template>
8***@qq.com (作者) - zero
你这里会编译html 我直接放图
8***@qq.com (作者)
前图是格式化后的。后图是格式化前的情况。格式化后导致编译不成功
2021-10-27 12:59