编译后wxml产物一样,差异仅是json配置。 为什么webview支持,skyline不支持?
表现:skyline展示show(异常),webview不展示show(正常)
wxml
<com data-custom-hidden="{{!(false)}}" vue-id="f4372d00-1" class="data-v-3e202046" bind:__l="__l" vue-slots="{{['default']}}">show</com>
差异仅是json配置
skyline
{
"navigationBarTitleText": "测试",
"navigationStyle": "custom",
"renderer": "skyline",
"componentFramework": "glass-easel",
"styleIsolation": "shared",
"disableScroll": true,
"usingComponents": {
"com": "/pages/test/com"
}
}
webview
{
"navigationBarTitleText": "测试",
"usingComponents": {
"com": "/pages/test/com"
}
}