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.

21 lines
253B

  1. <template>
  2. <sim v-if="$store.state.sim" />
  3. <fim v-else />
  4. </template>
  5. <script>
  6. export default {
  7. name: 'start',
  8. components: {
  9. sim: () => import('./start_sim'),
  10. fim: () => import('./start_4im')
  11. }
  12. }
  13. </script>
  14. <style scoped>
  15. </style>