This repository has been archived on 2024-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
2022-01-07 06:30:15 +00:00
|
|
|
<template>
|
2022-01-10 10:14:44 +00:00
|
|
|
<responsive-grid>
|
|
|
|
<apprentice-button
|
2022-01-11 05:47:26 +00:00
|
|
|
v-for="(process, index) in unlocked"
|
2022-01-10 10:14:44 +00:00
|
|
|
:key="`${index}-${process.workerLevel}`"
|
|
|
|
:process="process"
|
|
|
|
/>
|
|
|
|
</responsive-grid>
|
2022-01-07 06:30:15 +00:00
|
|
|
</template>
|
2022-01-11 05:47:26 +00:00
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
computed: {
|
|
|
|
unlocked() {
|
2022-01-13 05:37:30 +00:00
|
|
|
return this.$store.state.processes.filter((p) => p.visited && p.created)
|
2022-01-11 05:47:26 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|