aotds-docks/src/lib/components/ShipEdit/Weaponry/Weapon/Submunition.svelte

17 lines
351 B
Svelte
Raw Normal View History

2022-03-07 19:53:39 +00:00
<label>submunition pack</label>
2023-04-08 17:47:00 +00:00
<Arcs selected={[arc]} on:clickArc={({ detail }) => clickArc(detail)} />
2022-03-07 19:53:39 +00:00
<script>
import Arcs from "./Arcs.svelte";
import { createEventDispatcher } from "svelte";
export let arc = "F";
const dispatch = createEventDispatcher();
2023-04-08 17:47:00 +00:00
const clickArc = (arc) => {
dispatch("change", { arc });
2022-03-07 19:53:39 +00:00
};
</script>