Skip to content

条件编译

在 "template" 中:

html
<!-- #ifdef H5 -->
<view class="title">H5标题</view>
<!-- #endif -->

<!-- #ifdef MP-WEIXIN -->
<view class="title">微信小程序标题</view>
<!-- #endif -->

在 "script" 中:

js
// #ifdef H5
console.log('H5平台')
// #endif

// #ifdef MP-WEIXIN
console.log('微信小程序平台')
// #endif

基于 MIT 许可发布