dragonroll/documentation/docs/get-started.md
BinarySandia04 6b558b2e3d
All checks were successful
test / run-tests-client (push) Successful in 20s
test / run-tests-backend (push) Successful in 16s
Better docs
2024-10-11 12:50:46 +02:00

13 lines
584 B
Markdown

# Getting started
- The classes starting with the prefix `Client` are client specific
- The classes starting with the prefix `Backend` are backend specific
- All the other classes are accessible from both sides
If you want to use some view or partial of the Dragonroll source in your plugin,
you must do it from the "@" root. "@" represents the root of the `/src` directory of the client of Dragonroll, so for example, if you want to import the Dragonroll markdown
editor in your own views you should add:
```js
import MarkdownEditor from '@/views/partials/MarkdownEditor.vue';
```