mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-05-25 20:54:56 +00:00
Ditch global components
This commit is contained in:
@@ -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({
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user