保誠-保戶業務員媒合平台
Tomas
2023-07-31 7b64d5337254349b32ce91f30bb36eab6ba8231f
PAMapp/components/singleSelectBtn.vue
@@ -20,9 +20,12 @@
<script lang="ts">
  import { Component, Prop, PropSync, Vue } from "nuxt-property-decorator";
  import { OptionBtnDto } from "~/shared/models/optionBtnDto.model";
  import * as _ from 'lodash';
  @Component
  export default class SingleSelectBtn extends Vue {
    @PropSync('singleSelected', { default: '' })
    syncSingleSelected!: string | number;
@@ -34,10 +37,5 @@
      // 主要解決按鈕點擊兩次能回到,未點選的狀態
      this.syncSingleSelected = _.isEqual(this.syncSingleSelected, value) ? "" : value;
    }
  }
  export interface OptionBtnDto {
    title: string,
    subTitle?: string,
    label: string | number,
  }
</script>