import { defineStore } from "pinia"; export const useLanguageStore = defineStore("language", { state: () => ({ lang: "es", }), });