mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 21:38:13 +00:00
Migracja na Vite
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user