-
+
-
+
-
+
-
+
-
+
diff --git a/src/stores/ulp.ts b/src/stores/ulp.ts
new file mode 100644
index 0000000..7455deb
--- /dev/null
+++ b/src/stores/ulp.ts
@@ -0,0 +1,16 @@
+import { ref } from 'vue'
+import { defineStore } from 'pinia'
+
+export const useUlpStore = defineStore('ulp', () => {
+ const ulp = ref()
+ const setData = (value: number) => {
+ ulp.value = value
+ }
+ const getData = () => {
+ return ulp.value
+ }
+ return {
+ setData,
+ getData,
+ }
+})
\ No newline at end of file