摘要:
要将 locales/en.json 拆分为多个文件,并自动读取这些语言包,可以采用与中文语言包相似的方式。以下是具体步骤: 1. 创建语言包文件夹和子文件 首先,在 locales 文件夹中创建一个 en 文件夹,并在其中添加多个 JSON 文件。例如: src/ ├── locales/ │ ├ 阅读全文
摘要:
代码 store import { defineStore } from "pinia"; import { ref } from "vue"; export const useMyTestStore = defineStore('mytestStore', () => { // state con 阅读全文