23 lines
572 B
Vue
23 lines
572 B
Vue
<script setup>
|
|
import AddProductForm from "@/components/imports/AddProductForm.vue";
|
|
import AddProductVariantForm from "@/components/imports/AddProductVariantForm.vue";
|
|
import FileUpload from "@/components/media/FileUpload.vue";
|
|
</script>
|
|
<template>
|
|
<FileUpload
|
|
:type="['file']"
|
|
class="mb-2"
|
|
@files="onFiles"
|
|
>
|
|
<template #icon>
|
|
<Icon
|
|
name="material-symbols:upload-rounded"
|
|
:size="20"
|
|
/>
|
|
</template>
|
|
<span class="font-medium">Import</span>
|
|
</FileUpload>
|
|
<AddProductForm />
|
|
<AddProductVariantForm />
|
|
</template>
|