clarms.vue 663 Bytes

<template>
  <div>
    <clarms-modal-one v-if="showModal1" @close="showModal1 = false"></clarms-modal-one>
    <clarms-modal-two v-if="showModal2" @close="showModal2 = false"></clarms-modal-two>
    <div class="mobile-margin">

      <template v-if="step == 1">
        <clarms-verify-form @insuredInfoList="handleInsuredInfo"></clarms-verify-form>
      </template>

      <template v-if="step == 2">
        <clarms-material :insuredList="customerList" :cid="cid" @showModal="handleShowModal"></clarms-material>
      </template>
    </div>
  </div>
</template>

<script src="./clarms.js"></script>
<style lang="scss" scoped>
@import "./clarms.scss";
</style>