You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should be placed after the `<script>` tag for Vue itself, as it needs the global `Vue` to be available.
24
+
25
+
The functions are then exposed via the global `VueVNodeUtils`:
26
+
27
+
```js
28
+
const { addProps } = VueVNodeUtils
29
+
```
30
+
31
+
The URL above will include the development build, which is not minified and includes some warning messages. In production the exact version should be pinned and `.prod` should be used instead of `.dev`.
32
+
33
+
## CDN - ES module build
34
+
35
+
`@skirtle/vue-vnode-utils` imports from `vue`, so it needs an import map to be configured to use ES modules directly in the browser.
0 commit comments