This commit is contained in:
2024-03-05 15:27:42 +01:00
parent 17ebdace82
commit 436e3e63f9
4 changed files with 25 additions and 16 deletions
+19
View File
@@ -0,0 +1,19 @@
<template>
<div class="update-modal">
<AnimatedModal :is-open="true">Test</AnimatedModal>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import AnimatedModal from '../Global/AnimatedModal.vue';
export default defineComponent({
components: { AnimatedModal },
data() {
return {};
}
});
</script>
<style scoped></style>
+1 -1
View File
@@ -1,6 +1,6 @@
<template>
<section class="station_table">
<transition name="status-anim">
<transition name="status-anim" mode="out-in">
<div class="table_wrapper" :key="apiStore.dataStatuses.connection">
<table>
<thead>
-14
View File
@@ -1,14 +0,0 @@
import { PropType, defineComponent } from 'vue';
import dateMixin from '../../mixins/dateMixin';
import { TrainScheduleStop } from './TrainSchedule.vue';
export default defineComponent({
mixins: [dateMixin],
props: {
stop: {
type: Object as PropType<TrainScheduleStop>,
required: true
}
}
});