dragonroll/documentation/docs/get-started.md

13 lines
584 B
Markdown
Raw Normal View History

2024-10-11 10:50:46 +00:00
# Getting started
2024-10-11 10:04:40 +00:00
2024-10-11 10:50:46 +00:00
- 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
2024-10-11 10:04:40 +00:00
2024-10-11 10:50:46 +00:00
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:
2024-10-11 10:04:40 +00:00
2024-10-11 10:50:46 +00:00
```js
import MarkdownEditor from '@/views/partials/MarkdownEditor.vue';
```