Adds brandingStore.

Split userStore into userProfileStore and creatorProfileStore
This commit is contained in:
2024-09-22 02:42:26 -04:00
parent 3cfb3951e3
commit cd51474d08
36 changed files with 458 additions and 639 deletions

View File

@@ -4,40 +4,21 @@ import BannerActionsSm from "@/views/creators/banner/bannerlower/BannerActionsSm
import BannerActionsLg from "@/views/creators/banner/bannerlower/BannerActionsLg.vue";
import BannerActionsXl from "@/views/creators/banner/bannerlower/BannerActionsXl.vue";
const props = defineProps({
creator: {type: Object, required: true}
});
const emits = defineEmits(['content-posted']);
function addContent(content) {
emits('content-posted', content);
}
</script>
<template>
<div>
<banner-actions-sm class="d-sm-none"
:creator="creator"
@content-posted="addContent"
></banner-actions-sm>
<div class="d-none d-sm-flex d-md-none">
<banner-actions-md :creator="creator"
@content-posted="addContent"
></banner-actions-md>
</div>
<banner-actions-md class="d-none d-sm-flex d-md-none"
></banner-actions-md>
<div class="d-none d-md-flex d-lg-none">
<banner-actions-lg :creator="creator"
@content-posted="addContent"
></banner-actions-lg>
</div>
<banner-actions-lg class="d-none d-md-flex d-lg-none"
></banner-actions-lg>
<div class="d-none d-lg-flex">
<banner-actions-xl :creator="creator"
@content-posted="addContent"
></banner-actions-xl>
</div>
<banner-actions-xl class="d-none d-lg-flex"
></banner-actions-xl>
</div>
</template>