add: Form create load

This commit is contained in:
Alexandro Uc Santos
2023-12-07 18:04:17 -06:00
parent 2c74a4b3ae
commit cea26e1f6e
29 changed files with 1292 additions and 59 deletions

11
src/stores/loads.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useLoadsStore = defineStore('load', () => {
const currentLoad = ref(null);
return {
currentLoad
}
});