Skip to content

Commit 9c997b7

Browse files
authored
fix(button-close): switch to slots() from children (#1345)
Switching from `children` to `slots().default` appears to fix the original issue with SSR rendering of `×`
1 parent 4d5a9cc commit 9c997b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/button/button-close.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const props = {
1818
export default {
1919
functional: true,
2020
props,
21-
render(h, { props, data, listeners, children }) {
21+
render(h, { props, data, listeners, slots }) {
2222
const componentData = {
2323
staticClass: "close",
2424
class: {
@@ -40,9 +40,9 @@ export default {
4040
}
4141
};
4242
// Careful not to override the slot with innerHTML
43-
if (!children.length) {
44-
componentData.domProps = { innerHTML: "×" };
43+
if (!slots().default) {
44+
componentData.domProps = { innerHTML: "×" };
4545
}
46-
return h("button", mergeData(data, componentData), children);
46+
return h("button", mergeData(data, componentData), slots().default);
4747
}
4848
};

0 commit comments

Comments
 (0)