Info | -|
Components! go brrrrrrr | -
- $emit('click', e)"
- @mousemove="e => $emit('mouseMove', e)"
- @mouseenter="e => $emit('mouseEnter', e)"
- @mouseleave="e => $emit('mouseLeave', e)"
- />
- |
-
+
+ {whatIsHovered.value === ""
+ ? undefined
+ : FACTORY_COMPONENTS[whatIsHovered.value].description}
+
+ |
+ |
+ Components+
+ {Object.entries(FACTORY_COMPONENTS).map(value => {
+ const key = value[0] as FactoryCompNames;
+ const item = value[1];
+ return (
+ onComponentHover(key)}
+ onMouseleave={() => onComponentHover("")}
+ onClick={() => onCompClick(key)}
+ >
+ );
+ })}
+
+ |
+
+ |
+