{
+ const logPrefix = {
+ exception: '[Exception] /composables/useGameLinkedData',
+ failure: '[Failure] /composables/useGameLinkedData',
+ }
+ const hasGuid = ref(false) // GUID 존재 여부
+ const characterList = ref([] as CharacterInfo[]) // 보유 캐릭터 목록
+ const mainCharacter = ref({} as CharacterInfo) // 대표 캐릭터
+ const selectCharacter = ref(null) // (사용자가 )선택한 캐릭터
+
+ // [Setter] GUID 존재 여부 세팅
+ const setHasGuid = (newHasGuid: boolean) => {
+ hasGuid.value = newHasGuid
+ }
+ // [Setter] 보유 캐릭터 목록 세팅
+ const setCharacterList = (newCharacters: CharacterInfo[]) => {
+ characterList.value = newCharacters
+ }
+ // [Setter] 대표 캐릭터 세팅
+ const setMainCharacter = (newCharacter: CharacterInfo) => {
+ mainCharacter.value = newCharacter
+ }
+ // [Setter] 캐릭터 선택 세팅
+ const setSelectCharacter = (newCharacter: CharacterInfo | null) => {
+ selectCharacter.value = newCharacter as any
+ }
+
+ // [Computed] 캐릭터 목록 존재 여부
+ const hasNoCharacterList: ComputedRef
+ {{ tm('Coupon_Section_History_Description') }}
+ {{ tm('Coupon_Has_Not_Item') }} {{ coupon.coupon_name }} {{ coupon.register_date }}
+
+
+
+
+
+
+
+
+
+
+
+ {{ tm('Coupon_Item_Name') }}
+
+
+ {{ tm('Coupon_Item_RegistDate') }}
+
+
+ {{ tm('Coupon_Item_Status') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+