保誠-保戶業務員媒合平台
PAMapp/components/Consultant/ConsultantList.vue
@@ -6,7 +6,6 @@
                v-for="(agent, index) in agents"
                :key="index"
                :agentInfo="agent"
                @removeAgent="removeAgent"
            ></ConsultantCard>
        </template>
        <template v-if="isLogin && agents.length === 0">
@@ -24,7 +23,7 @@
</template>
<script lang="ts">
import { Vue, Component, Prop, Emit } from 'nuxt-property-decorator';
import { Vue, Component, Prop } from 'nuxt-property-decorator';
import { Consultants } from '~/assets/ts/api/consultant';
import { isLogin } from '~/assets/ts/auth';
@@ -36,9 +35,6 @@
        return isLogin();
    }
    @Emit('removeAgent') removeAgent(agentId: number) {
        return agentId;
    }
}
</script>