designtopack/src/stores/dialog.js

9 lines
181 B
JavaScript
Raw Normal View History

import { defineStore } from "pinia";
import { ref } from "vue";
export const useDialogStore = defineStore("dialog", () => {
const content = ref(null);
return { content };
});