New post editor basis

This commit is contained in:
2024-03-02 21:40:09 +08:00
parent 3ae72cd9e0
commit e0bb05bee8
9 changed files with 105 additions and 7 deletions

View File

@ -0,0 +1,8 @@
import { defineStore } from "pinia";
import { ref } from "vue";
export const useEditor = defineStore("editor", () => {
const show = ref(false);
return { show };
});