Fragment Component

This commit is contained in:
cgfhtw
2024-01-23 09:43:41 +01:00
parent 41e5c52d2f
commit e2a66d5143
+5
View File
@@ -0,0 +1,5 @@
export default {
render() {
return (this.$slots && this.$slots.default) ? this.$slots.default() : null;
}
};