✨ (arcile)
This commit is contained in:
33
src/modules/FlowArticle.vue
Normal file
33
src/modules/FlowArticle.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<script setup lang="ts">
|
||||
import FlowHypothesis from '@/modules/article/FlowHypothesis.vue'
|
||||
import FlowIntro from '@/modules/article/FlowIntro.vue'
|
||||
import FeatureSteps from '@/modules/feature/FeatureSteps.vue'
|
||||
import FlowDashboard from '@/modules/feature/FlowDashboard.vue'
|
||||
import SimulationControls from '@/modules/simulation/SimulationControls.vue'
|
||||
import SimulationDashboard from '@/modules/simulation/SimulationDashboard.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="flow-article">
|
||||
<FlowIntro class="text" />
|
||||
<hr />
|
||||
<FlowHypothesis class="text" />
|
||||
<FlowDashboard />
|
||||
<FeatureSteps />
|
||||
<SimulationControls />
|
||||
<SimulationDashboard />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss">
|
||||
.flow-article {
|
||||
color: black;
|
||||
|
||||
.text {
|
||||
font-size: 16pt;
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
text-align: justify;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user