584 B
584 B
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:
import MarkdownEditor from '@/views/partials/MarkdownEditor.vue';