PluginProbe
Plugin Detective – Troubleshooting Conflicts / 1.1.4
Plugin Detective – Troubleshooting Conflicts v1.1.4
1.2.35 1.2.33 1.2.32 1.2.31 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2 1.2.1 1.2.10 1.2.12 1.2.13 1.2.14 1.2.16 1.2.19 1.2.20 1.2.22 1.2.23 1.2.24 All 54 releases
plugin-detective / troubleshoot / app / src / components / Complete.vue

Complete.vue in Plugin Detective – Troubleshooting Conflicts 1.1.4, at troubleshoot/app/src/components/Complete.vue

29 lines 860 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <template>
2 <required-culprits v-if="activeCase.outcome === 'required_plugins_broken'"></required-culprits>
3 <broken-loop v-else-if="activeCase.outcome === 'broken_loop'"></broken-loop>
4 <culprits-found v-else-if="activeCase.culprits.length"></culprits-found>
5 <no-culprit-found v-else></no-culprit-found>
6 </template>
7
8 <script>
9 import store from '@/store'
10 import { mapState } from 'vuex'
11 import NoCulpritFound from './results/NoCulpritFound'
12 import CulpritsFound from './results/CulpritsFound'
13 import RequiredCulprits from './results/RequiredCulprits'
14 import BrokenLoop from './results/BrokenLoop'
15
16 export default {
17 name: 'complete',
18 components: { NoCulpritFound, CulpritsFound, RequiredCulprits, BrokenLoop },
19 store,
20 data () {
21 return {}
22 },
23 computed: {
24 ...mapState([
25 'activeCase'
26 ])
27 }
28 }
29 </script>