af-mobile-client-vue3 1.2.50 → 1.2.51

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.2.50",
4
+ "version": "1.2.51",
5
5
  "packageManager": "pnpm@10.12.3",
6
6
  "description": "Vue + Vite component lib",
7
7
  "engines": {
@@ -78,6 +78,7 @@
78
78
  "vite-plugin-mock-dev-server": "^1.9.1",
79
79
  "vite-plugin-pwa": "^1.0.0",
80
80
  "vite-plugin-sitemap": "^0.8.2",
81
+ "vite-plugin-svg-icons": "^2.0.1",
81
82
  "vite-plugin-vconsole": "^2.1.1",
82
83
  "vite-plugin-vue-devtools": "^7.7.7",
83
84
  "vue-tsc": "^2.2.10"
@@ -56,6 +56,6 @@ const styleExternalIcon = computed(() => {
56
56
  }
57
57
 
58
58
  .svg-icon-active-blue {
59
- color: #1989FA
59
+ color: #1989fa;
60
60
  }
61
61
  </style>
package/src/main.ts CHANGED
@@ -10,6 +10,8 @@ import 'virtual:uno.css'
10
10
  import '@af-mobile-client-vue3/styles/app.less'
11
11
  import '@af-mobile-client-vue3/styles/var.less'
12
12
 
13
+ // svg icon
14
+ import 'virtual:svg-icons-register'
13
15
  // Vant 桌面端适配
14
16
  import '@vant/touch-emulator'
15
17