vue-data-ui 1.9.94 → 1.9.96
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
|
@@ -109,4 +109,14 @@ Types are available in the 'vue-data-ui.d.ts' file under the types directory of
|
|
|
109
109
|
[This repo contains a boilerplate implementation of the vue-data-ui package in Nuxt](https://github.com/graphieros/vue-data-ui-nuxt)
|
|
110
110
|
|
|
111
111
|
# Slots
|
|
112
|
-
Most Vue Data UI chart components include a #svg slot you can use to introduce customized svg elements (shapes, text, etc).
|
|
112
|
+
Most Vue Data UI chart components include a #svg slot you can use to introduce customized svg elements (shapes, text, etc).
|
|
113
|
+
|
|
114
|
+
# Config
|
|
115
|
+
If for some reason you can't access the documentation website and need to get the default config object for a component:
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
import { getVueDataUiConfig } from "vue-data-ui";
|
|
119
|
+
|
|
120
|
+
const defaultConfigXy = getVueDataUiConfig("vue_ui_xy");
|
|
121
|
+
|
|
122
|
+
```
|