remove unused var

This commit is contained in:
Hayden 2022-09-12 14:27:51 -08:00
parent fb0898aa71
commit 3a5ae4950f

View file

@ -12,11 +12,6 @@
const itemId = computed<string>(() => route.params.id as string);
const originalItem = ref({
name: "",
quantity: 0,
});
const { data: locations } = useAsyncData(async () => {
const { data } = await api.locations.getAll();
return data.items;