We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61770f0 commit 6c6bcbfCopy full SHA for 6c6bcbf
packages/vue-native-helper/build.js
@@ -1434,12 +1434,12 @@ function renderSlot(names, children) {
1434
children = children.filter(function (v) { return v != null; });
1435
children.forEach(function (v) {
1436
if (v.type === COMMON.template.type) {
1437
- if (v['data-slot'] === undefined) {
+ if (v['dataSlot'] === undefined) {
1438
defaultSlot.push(v.render);
1439
}
1440
return
1441
1442
- if (v.props === undefined || v.props['data-slot'] === undefined) {
+ if (v.props === undefined || v.props['dataSlot'] === undefined) {
1443
defaultSlot.push(v);
1444
1445
});
0 commit comments