Skip to content

Commit

Permalink
fix: resolve multiple slots (#1816)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJim authored Mar 20, 2023
1 parent ee7d94c commit d484171
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/grid-item/grid-item.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export default class GridItem extends SuperComponent {

options = {
multipleSlots: true,
// virtualHost: true,
};

relations: RelationsOptions = {
Expand Down
4 changes: 4 additions & 0 deletions src/link/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export default class Link extends SuperComponent {

properties = props;

options = {
multipleSlots: true,
};

data = {
prefix,
classPrefix: name,
Expand Down
4 changes: 4 additions & 0 deletions src/tab-panel/tab-panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ export default class TabPanel extends SuperComponent {
},
};

options = {
multipleSlots: true,
};

properties = props;

data = {
Expand Down

0 comments on commit d484171

Please sign in to comment.