vue-safe-force-graph 2.0.12 → 2.0.13

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
@@ -19,7 +19,9 @@ Simply import vue-safe-force-graph in your Vue.js components:
19
19
  import ForceGraph, { Graph, Render } from 'vue-safe-force-graph'
20
20
  import 'vue-safe-force-graph/lib/style.css'
21
21
  const app = createApp(App)
22
- app.use(ForceGraph)
22
+ app.use(ForceGraph, {
23
+ disableQapm: true, // ture或者false。 true则禁用 Qapm
24
+ })
23
25
  ```
24
26
 
25
27