add: Form create load
This commit is contained in:
11
src/stores/loads.js
Normal file
11
src/stores/loads.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
export const useLoadsStore = defineStore('load', () => {
|
||||
|
||||
const currentLoad = ref(null);
|
||||
|
||||
return {
|
||||
currentLoad
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user