add latest

This commit is contained in:
2022-09-23 00:37:32 +01:00
parent 9c059b3fc3
commit 6e4e70a360
2 changed files with 15 additions and 12 deletions

View File

@@ -83,11 +83,25 @@
</template>
<script setup lang="ts">
import { onMounted } from 'vue';
import mermaid from 'mermaid';
// Production Chain Data
import { productionChains } from './production-chains';
// Components
import ChainTiers from 'components/ChainTiers.vue';
import ProductionChain from 'components/ProductionChain.vue';
onMounted(() => {
mermaid.initialize({
startOnLoad: false,
logLevel: 'fatal',
securityLevel: 'loose',
theme: 'neutral',
flowchart: { htmlLabels: true }
});
});
</script>
<style lang="scss"></style>