vg-print 1.0.328 → 1.0.330

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
@@ -208,7 +208,7 @@ tpl.toImage({ name: '示例' }, { isDownload: true, name: '图片', limit: 1, ty
208
208
  import { hiprint } from 'vg-print'
209
209
 
210
210
  // 注册授权 key(建议在应用启动时调用)
211
- hiprint.register({ authKey: 'eyJrIjoidDEifQ==' })
211
+ hiprint.register({ authKey: 'eyJrIjoiZ21jNTc2MDMzNyJ9' })
212
212
 
213
213
  // 有授权 key → 运行态默认水印移除(设计态由面板设置项决定)
214
214
  const tpl = new hiprint.PrintTemplate({ template: {} })
@@ -219,7 +219,7 @@ const tpl = new hiprint.PrintTemplate({ template: {} })
219
219
  ```js
220
220
  import { hiprint, createTemplate, printBrowser } from 'vg-print'
221
221
 
222
- hiprint.register({ authKey: 'eyJrIjoidDEifQ==' })
222
+ hiprint.register({ authKey: 'eyJrIjoiZ21jNTc2MDMzNyJ9' })
223
223
  const tpl = createTemplate(tmplJson) // 不再自动注入默认水印
224
224
  printBrowser(tpl, data)
225
225
  ```