Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion docs/utils/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ The [vue-utils](https://github.com/viur-framework/vi-vue-utils) serve as an inte
- Login screen for Vue.js applications with a ViUR backend.
- Auto rendering of so called ViUR backend skeletons in a Vue.js application.

[## Tips and tricks for your individual bones](./tips.md)

## HTTP Requests

Expand Down Expand Up @@ -36,9 +37,11 @@ destroyStore(userList)
```

## Login Screen

coming soon...

## Bone rendering

::: code-group

```js:line-numbers [main.js]
Expand Down Expand Up @@ -131,4 +134,27 @@ export default {
</script>

```
:::

:::

## Error: textbone --- ckeditor has no default export

only if you use only JS and not TS

in vite.config.mjs add the following code

before build-Object:

```js
optimizeDeps: {
include: ['@viur/ckeditor5-build-classic'],
},
```

in Build-Object add after rollupOptions

```js
commonjsOptions: {
include: ['@viur/ckeditor5-build-classic'],
}
````
Empty file added docs/utils/tips.md
Empty file.