mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 18:37:23 -08:00
23 lines
608 B
TypeScript
23 lines
608 B
TypeScript
import { ref, Ref } from "@nuxtjs/composition-api";
|
|
import { useData, useStore } from "../partials/use-store-factory";
|
|
import { IngredientUnit } from "~/lib/api/types/recipe";
|
|
import { useUserApi } from "~/composables/api";
|
|
|
|
const store: Ref<IngredientUnit[]> = ref([]);
|
|
const loading = ref(false);
|
|
|
|
export const useUnitData = function () {
|
|
return useData<IngredientUnit>({
|
|
id: "",
|
|
name: "",
|
|
fraction: true,
|
|
abbreviation: "",
|
|
description: "",
|
|
});
|
|
}
|
|
|
|
export const useUnitStore = function () {
|
|
const api = useUserApi();
|
|
return useStore<IngredientUnit>(store, loading, api.units);
|
|
}
|