提交 702cd89c 编写于 作者: fxy060608's avatar fxy060608

fix(mp): set the default script #1411

上级 e8745e0d
......@@ -18,6 +18,19 @@ function preprocessBlock(block) {
}
module.exports = function parseCustomBlocks(descriptor, options) {
if (
process.env.UNI_PLATFORM &&
process.env.UNI_PLATFORM.indexOf('mp-') === 0 &&
!descriptor.script
) { // 临时方案:小程序平台,无script节点时,自动补充(激活componentSet,否则没法正常追加入口js,后续优化)
descriptor.script = {
type: 'script',
content: 'export default {}',
start: 100,
attrs: {},
end: 125
}
}
if (!descriptor.template || !FILTER_TAG || options.isAppNVue) {
// delete customBlocks
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册