Ditch global components

This commit is contained in:
Darko Gjorgjijoski
2025-01-12 17:53:44 +01:00
parent fcf64c0b26
commit 8160b53689
220 changed files with 1175 additions and 39 deletions

View File

@@ -123,6 +123,7 @@
<script setup>
import { useI18n } from 'vue-i18n'
import { computed, onMounted, ref, watch, reactive } from 'vue'
import BaseText from '@/scripts/components/base/BaseText.vue'
const { t } = useI18n()
const props = defineProps({

View File

@@ -46,4 +46,9 @@
</div>
</div>
</BaseContentPlaceholders>
</template>
</template>
<script setup lang="ts">
import BaseContentPlaceholdersText from '@/scripts/components/base/BaseContentPlaceholdersText.vue'
import BaseContentPlaceholdersBox from '@/scripts/components/base/BaseContentPlaceholdersBox.vue'
import BaseContentPlaceholders from '@/scripts/components/base/BaseContentPlaceholders.vue'
</script>

View File

@@ -8,7 +8,7 @@
<!-- Product -->
<div class="lg:grid lg:grid-rows-1 lg:grid-cols-7 lg:gap-x-8 lg:gap-y-10 xl:gap-x-16 mt-6">
<!-- Product image -->
<div class="lg:row-end-1 lg:col-span-4">
<BaseContentPlaceholdersBox class="h-96 sm:w-full" rounded />
@@ -102,3 +102,9 @@
</BasePage>
</BaseContentPlaceholders>
</template>
<script setup lang="ts">
import BaseContentPlaceholdersBox from '@/scripts/components/base/BaseContentPlaceholdersBox.vue'
import BaseContentPlaceholdersText from '@/scripts/components/base/BaseContentPlaceholdersText.vue'
import BasePage from '@/scripts/components/base/BasePage.vue'
import BaseContentPlaceholders from '@/scripts/components/base/BaseContentPlaceholders.vue'
</script>