You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
402 B
18 lines
402 B
4 years ago
|
<template>
|
||
|
<boiler-db-list v-if="ifBoiler" />
|
||
|
<original-db-list v-else />
|
||
|
</template>
|
||
|
<script>
|
||
|
import originalDbList from './components/original_db_list'
|
||
|
import boilerDbList from './components/boiler_db_list'
|
||
|
export default {
|
||
|
name: 'TODOReport',
|
||
|
components: { originalDbList, boilerDbList },
|
||
|
data() {
|
||
|
return {
|
||
|
ifBoiler: this.$store.getters.departmentId === 75
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|