mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-23 23:25:00 +00:00
17 lines
427 B
Vue
17 lines
427 B
Vue
<script setup lang="ts">
|
|
import GenerateButton from "ChillMainAssets/vuejs/SavedExportButtons/Component/GenerateButton.vue";
|
|
|
|
interface SavedExportButtonsConfig {
|
|
savedExportUuid: string;
|
|
savedExportAlias: string;
|
|
}
|
|
|
|
const props = defineProps<SavedExportButtonsConfig>();
|
|
</script>
|
|
|
|
<template>
|
|
<generate-button :saved-export-uuid="props.savedExportUuid"></generate-button>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|