MorJS 代码维度 #ifndef(判断是否无变量)
js/ts 文件类型
/* #ifndef wechat */
console.log('除了在微信以外的端都展示')
/* #endif */
wxss/acss/less/scss 文件类型
.index-page {
/* #ifndef wechat */
background: red;
/* #endif */
}
wxml/axml 文件类型
<!-- #ifndef wechat -->
<view>除了在微信以外的端都展示</view>
<!-- #endif -->
jsonc/json5 文件类型
{
"component": true,
"usingComponents": {
// #ifndef wechat
"any-component": "./wechat-any-component",
// #endif
"other-component": "./other-component"
}
}