mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-06 06:55:55 +00:00
19 lines
304 B
Vue
19 lines
304 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>
|