add the setup part and now we can erase

This commit is contained in:
Julien Calixte
2023-07-30 19:16:36 +02:00
parent ea4183d309
commit c8644074b4
3 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,36 @@
<script setup lang="ts">
import ProblemSolvingIcon from '@/icons/ProblemSolvingIcon.vue'
import PullSystemIcon from '@/icons/PullSystemIcon.vue'
import PushSystemIcon from '@/icons/PushSystemIcon.vue'
import FlowControls from '@/modules/feature/FlowControls.vue'
</script>
<template>
<div>
<p>
You're a Product Manager in a project who has just started, your goal is
to make a product as fast as you can. With you, you'll have the product
team, designers, developers and a release team.
</p>
<p>Each day, you can choose between 3 strategies:</p>
<ol>
<li>
Push system
<PushSystemIcon />
</li>
<li>
Pull system
<PullSystemIcon />
</li>
<li>
Problem solving
<ProblemSolvingIcon />
</li>
</ol>
<p>
In this article we'll focus on how these strategies are efficient and what
are the impact on the quality the teams produce.
</p>
<FlowControls />
</div>
</template>