9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
|
|
import { defineStore } from "pinia";
|
||
|
|
import { ref } from "vue";
|
||
|
|
|
||
|
|
export const useDialogStore = defineStore("dialog", () => {
|
||
|
|
const content = ref(null);
|
||
|
|
|
||
|
|
return { content };
|
||
|
|
});
|