Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 68873d0

Browse files
committed
feat(modal): adjusted animation beginning
1 parent c0fca4d commit 68873d0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

components/modal/modal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template lang="pug">
2-
transition(name='fade', @after-enter='showContent = true')
2+
transition(name='fade', @before-enter='showContent = true')
33
.wrapper(v-if='display', @click.self='closeModal')
44
transition(name='popup')
55
.modal(v-if='showContent')

components/project-links/project-links.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</template>
2222

2323
<script lang="ts">
24-
import { defineComponent, ref, unref, watch, watchEffect } from '@nuxtjs/composition-api';
24+
import { defineComponent, ref, unref, watch } from '@nuxtjs/composition-api';
2525
2626
import addIcon from 'vue-material-design-icons/Plus.vue';
2727
import binIcon from 'vue-material-design-icons/Delete.vue';

0 commit comments

Comments
 (0)