import { defineStore } from 'pinia' import { ref } from 'vue' import { templateApi } from '@/api/template' import type { Template, Paragraph } from '@/types' export const useTemplateStore = defineStore('template', () => { const templates = ref([]) const currentTemplate = ref