You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
259 B

  1. <template>
  2. <div class="mermaid">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. mounted() {
  9. import("mermaid/dist/mermaid").then(m => {
  10. m.initialize({
  11. startOnLoad: true
  12. });
  13. m.init();
  14. });
  15. }
  16. };
  17. </script>