@gonsin/gview 2.0.58 → 2.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,13 +9,9 @@
9
9
  在 `main.ts` 文件中引入 `@gonsin/gview` 相关依赖:
10
10
 
11
11
  ```typescript
12
- import GView, { setupStore, i18n, useI18n } from "@gonsin/gview";
12
+ import GView, { setupStore } from "@gonsin/gview";
13
13
  import "@gonsin/gview/dist/style.css";
14
14
 
15
- const { setupI18n } = useI18n();
16
- app.use(i18n);
17
- setupI18n();
18
-
19
15
  app.use(GView, { router });
20
16
  setupStore(pinia);
21
17
  ```