| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!--
- bouton Créer
- -->
- <template>
- <main>
- <v-btn
- elevation="2"
- color="ot_warning ot_white--text"
- @click="showDialog=true"
- >
- {{ $t('create') }}
- </v-btn>
- <lazy-LayoutDialog
- :show="showDialog"
- >
- <template #dialogType>{{ $t('creative_assistant') }}</template>
- <template #dialogTitle>{{ $t('what_do_you_want_to_create') }}</template>
- <template #dialogText>
- <LayoutHeaderUniversalCreationGenerateCardsSteps :step="step" @updateStep="step=$event" />
- </template>
- <template #dialogBtn>
- <div class="text-center">
- <v-btn
- color="ot_super_light_grey"
- @click="showDialog=false;step=1"
- >
- {{ $t('cancel') }}
- </v-btn>
- <v-btn
- v-if="step > 1"
- color="ot_super_light_grey"
- @click="step=1"
- >
- {{ $t('previous') }}
- </v-btn>
- </div>
- </template>
- </lazy-LayoutDialog>
- </main>
- </template>
- <script lang="ts">
- import {defineComponent, Ref,ref} from '@nuxtjs/composition-api'
- export default defineComponent({
- setup () {
- const showDialog:Ref<Boolean> = ref(false);
- const step:Ref<Number> = ref(1);
- return {
- showDialog,
- step
- }
- }
- })
- </script>
- <style scoped>
- </style>
|