wx2
Version:
微信小程序 转换 百度小程序
13 lines (10 loc) • 359 B
JavaScript
/**
* @file 针对 transition 转换
*/
const {get, set, has} = require('lodash');
module.exports = function ({path, context, file}) {
if (get(path, 'node.property.type') === 'Identifier' && get(path, 'node.property.name') === 'transition') {
// TODO 特殊情况兼容性
path.replaceWithSourceString('this.data.animation');
}
};