ye
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 52s

This commit is contained in:
2026-04-29 01:32:09 +02:00
parent 76bb9fbb30
commit e6d66529e3
16 changed files with 767 additions and 83 deletions

View File

@@ -3,6 +3,9 @@
import { onMounted, ref } from 'vue';
import { AddSound } from '../../services/Sound';
import { useCampaignService } from '~/services/Campaign';
import { ClearWindow } from '~/services/Windows';
const { SetCampaign } = useCampaignService();
const props = defineProps(['data']);
const data = props.data;
@@ -21,8 +24,8 @@ onMounted(() => {
});
function ViewCampaign(){
// ConnectToCampaign(data);
// DisplayCampaign(data);
SetCampaign(data);
ClearWindow({type: "main_menu"});
}
</script>