dragonroll/tutorials/vdragonviews.md
BinarySandia04 1b0983f7b7
All checks were successful
test / run-tests-client (push) Successful in 43s
test / run-tests-backend (push) Successful in 15s
Mes coses
2024-10-10 15:06:45 +02:00

7 lines
371 B
Markdown

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';
```