Frontend move to union feed

This commit is contained in:
2024-03-03 21:24:08 +08:00
parent e1822e5363
commit 1725724758
15 changed files with 199 additions and 47 deletions

View File

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