github.com/AlpineAIO/wails/v2@v2.0.0-beta.32.0.20240505041856-1047a8fa5fef/pkg/templates/generate/assets/vue-ts/frontend/src/App.vue (about) 1 <script lang="ts" setup> 2 import HelloWorld from './components/HelloWorld.vue'</script> 3 4 <template> 5 <img id="logo" alt="Wails logo" src="./assets/images/logo-universal.png"/> 6 <HelloWorld/> 7 </template> 8 9 <style> 10 #logo { 11 display: block; 12 width: 50%; 13 height: 50%; 14 margin: auto; 15 padding: 10% 0 0; 16 background-position: center; 17 background-repeat: no-repeat; 18 background-size: 100% 100%; 19 background-origin: content-box; 20 } 21 </style>