From b4d6944076f1df6eedaae35c4c2a7072fe988e8a Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期二, 30 四月 2024 15:34:02 +0800 Subject: [PATCH] update: package-lock.json --- PAMapp/components/singleSelectBtn.vue | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/PAMapp/components/singleSelectBtn.vue b/PAMapp/components/singleSelectBtn.vue index b7a4a55..8fbcd3b 100644 --- a/PAMapp/components/singleSelectBtn.vue +++ b/PAMapp/components/singleSelectBtn.vue @@ -21,7 +21,6 @@ <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 { @@ -35,7 +34,7 @@ ////////////////////////////////////////////////////////////////////// patchValue(value: string | number): void { // 銝餉�圾瘙箸����甈∟��嚗暺������ - this.syncSingleSelected = _.isEqual(this.syncSingleSelected, value) ? "" : value; + this.syncSingleSelected = this.syncSingleSelected === value ? "" : value; } } </script> -- Gitblit v1.8.0