presun obrazkov z /public do /assets/images,

prelinkovanie obrazkov v About.vue
This commit is contained in:
Igor Miňo 2025-05-15 11:42:49 +02:00
parent 5250a6d279
commit dfa51da14b
5 changed files with 14 additions and 13 deletions

View File

Before

Width:  |  Height:  |  Size: 208 KiB

After

Width:  |  Height:  |  Size: 208 KiB

View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

View File

Before

Width:  |  Height:  |  Size: 949 B

After

Width:  |  Height:  |  Size: 949 B

View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

View File

@ -12,21 +12,21 @@
<div> <div>
Backend thanks for <br /> Backend thanks for <br />
<a href="https://www.php.net" target="_blank"> <a href="https://www.php.net" target="_blank">
<img src="/php-power-micro.png" height="20" alt="" /> <br /> <img :src="php_power_micro" height="20" alt="" /> <br />
PHP 8.2 PHP 8.2
</a> </a>
</div> </div>
<div> <div>
Database thanks for <br> Database thanks for <br>
<a href="https://www.sqlite.org" target="_blank"> <a href="https://www.sqlite.org" target="_blank">
<img src="/SQLite370.svg" height="20" alt="" /> <br> <img :src="sqlite" height="20" alt="" /> <br>
SQLite SQLite
</a> </a>
</div> </div>
<div> <div>
Frontend thanks for <br> Frontend thanks for <br>
<a href="https://vuejs.org" target="_blank"> <a href="https://vuejs.org" target="_blank">
<img src="/vue.svg" height="20" alt="" /> <br> <img :src="vue" height="20" alt="" /> <br>
Vue 3 Vue 3
</a> </a>
</div> </div>
@ -39,18 +39,19 @@
> >
</p> </p>
<h2>Diagram stavov pre BUG</h2> <h2>Diagram stavov pre BUG</h2>
<img src="/FlowDiagram.drawio.svg" alt="" width="90%" /> <img :src="flowdiagram" alt="" width="90%" />
</div> </div>
</div> </div>
</template> </template>
<script> <script setup>
export default { import { ref } from 'vue';
data() { import php_power_micro from '../assets/images/php-power-micro.png';
return { import sqlite from '../assets/images/SQLite370.svg';
version: __APP_VERSION__, import vue from '../assets/images/vue.svg';
build: __BUILD_DATE__, import flowdiagram from '../assets/images/FlowDiagram.drawio.svg';
};
}, const version = ref(__APP_VERSION__);
}; const build = ref(__BUILD_DATE__);
</script> </script>