mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 09:16:45 +00:00
18 lines
293 B
Vue
18 lines
293 B
Vue
<template>
|
|
<div class="mermaid">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
mounted() {
|
|
import("mermaid/dist/mermaid").then(m => {
|
|
m.initialize({
|
|
startOnLoad: true
|
|
});
|
|
m.init();
|
|
});
|
|
}
|
|
};
|
|
</script> |