initial commit

This commit is contained in:
2022-09-21 02:11:53 +01:00
parent 6c1f4091ac
commit 530db529ce
44 changed files with 4494 additions and 0 deletions

0
src/boot/.gitkeep Normal file
View File

8
src/boot/mermaid.ts Normal file
View File

@@ -0,0 +1,8 @@
import { boot } from 'quasar/wrappers';
import mermaid from 'mermaid';
// "async" is optional;
// more info on params: https://v2.quasar.dev/quasar-cli/boot-files
export default boot(async (/* { app, router, ... } */) => {
mermaid.initialize({ startOnLoad: true });
});