Files
wails-nuxt/frontend/app/app.vue
2025-09-04 10:23:20 +08:00

24 lines
435 B
Vue

<script setup>
import HelloWorld from './components/HelloWorld.vue'
</script>
<template>
<img id="logo" alt="Wails logo" src="./assets/images/logo-universal.png"/>
<HelloWorld/>
</template>
<style>
#logo {
display: block;
width: 50%;
height: 50%;
margin: auto;
padding: 10% 0 0;
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
background-origin: content-box;
}
</style>