joken-前端工程师

  :: 首页 :: 博问 :: 闪存 :: 新随笔 :: :: :: 管理 ::

2024年10月15日

摘要: 要将 locales/en.json 拆分为多个文件,并自动读取这些语言包,可以采用与中文语言包相似的方式。以下是具体步骤: 1. 创建语言包文件夹和子文件 首先,在 locales 文件夹中创建一个 en 文件夹,并在其中添加多个 JSON 文件。例如: src/ ├── locales/ │ ├ 阅读全文
posted @ 2024-10-15 21:31 joken1310 阅读(57) 评论(0) 推荐(0) 编辑

摘要: 代码 store import { defineStore } from "pinia"; import { ref } from "vue"; export const useMyTestStore = defineStore('mytestStore', () => { // state con 阅读全文
posted @ 2024-10-15 21:24 joken1310 阅读(179) 评论(0) 推荐(0) 编辑