본문 바로가기
보드게임 긱 추천 게임
Wizard Thumbnail
BoardGameGeek 사이트에서 인기순위 상위 100개 중 랜덤 3개를 보여줍니다.
BGG
귀펀치토끼는 부서지지 않는다.
주소(D)
북마크/메모장

버튼 스위처

<div class="wrap_pos_default_info">
  <p class="torder_title_sm torder_title_require">
    포스
  </p>
  <div class="pos_default_button_right">
    <div
      class="torder_button_list_lg"
    >
      <button
        :class="getPosDefaultButtonStyle(posDefaultInfo)"
        v-for="(posDefaultInfo, index) in getPosDefaultButtonList"
        :key="`pos-default-button-key-${index}`"
        @click="updateStorePos(posDefaultInfo, true)"
      >
        {{posDefaultInfo}}
      </button>
    </div>
  </div>
</div>
const getCustomerGradeButtonInfo = [
  '대표',
  '직원',
  '기타',
];
const defaultCustomerGrade = ref('대표');
const getCustomerGradeButtonStyle = (value: string) => ({
  torder_button_ms: true,
  torder_button_active: defaultCustomerGrade.value === value,
});
// 고객정보 직책 셀렉션
const updateGradeInfo = (value: string) => {
  defaultCustomerGrade.value = value;
};
완료
내 컴퓨터