✨ New post editor basis
This commit is contained in:
8
pkg/views/src/stores/editor.ts
Normal file
8
pkg/views/src/stores/editor.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { defineStore } from "pinia";
|
||||
import { ref } from "vue";
|
||||
|
||||
export const useEditor = defineStore("editor", () => {
|
||||
const show = ref(false);
|
||||
|
||||
return { show };
|
||||
});
|
Reference in New Issue
Block a user