Migracja na Vite

This commit is contained in:
2022-07-16 16:12:31 +02:00
parent fc56c38c45
commit 46e700583d
63 changed files with 4269 additions and 23282 deletions
+5 -7
View File
@@ -1,21 +1,19 @@
<template>
<div class="error-view">
<div class="container">
<img :src="icons.error" alt="error" />
<img :src="getIcon('error')" alt="error" />
<div class="desc">Z powodu błędu w zapisywaniu rozkładów jazdy w tej zakładce można do odwołania nacieszyć się animacją sygnału S1a. Jak naprawię to będzie :)</div>
</div>
</div>
</template>
<script lang="ts">
import { defineComponent } from '@vue/runtime-core';
import { defineComponent } from "vue";
import imageMixin from "../mixins/imageMixin";
export default defineComponent({
data: () => ({
icons: {
error: require('@/assets/icon-error.svg'),
},
}),
mixins: [imageMixin]
});
</script>