add icon as asset, add refresh button

This commit is contained in:
Adrian Zuercher
2025-06-29 20:27:18 +02:00
parent 472a446d3a
commit c58dbf34d0
2 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "lightcontrol", "name": "lightcontrol",
"version": "0.0.15", "version": "0.0.16",
"description": "A Tecamino App", "description": "A Tecamino App",
"productName": "Light Control", "productName": "Light Control",
"author": "A. Zuercher", "author": "A. Zuercher",

View File

@@ -3,15 +3,17 @@
<q-header elevated> <q-header elevated>
<q-toolbar> <q-toolbar>
<q-img <q-img
src="src/assets/LOGO_CF-ICON_color.svg" :src="logo"
alt="Logo" alt="Logo"
style="width: 40px; height: 40px; background-color: var(--q-primary)" style="width: 40px; height: 40px; background-color: var(--q-primary)"
class="q-mr-sm" class="q-mr-sm"
/> />
<q-btn flat dense round icon="menu" aria-label="Menu" @click="toggleLeftDrawer" /> <q-btn flat dense round icon="menu" aria-label="Menu" @click="toggleLeftDrawer" />
<q-toolbar-title> Light Control </q-toolbar-title> <q-toolbar-title> Light Control </q-toolbar-title>
<div>Version {{ version }}</div> <div>Version {{ version }}</div>
<q-btn dense icon="refresh" square class="q-px-md q-ml-md" @click="refresh" />
</q-toolbar> </q-toolbar>
</q-header> </q-header>
@@ -35,6 +37,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import logo from 'src/assets/LOGO_CF-ICON_color.svg';
import { ref } from 'vue'; import { ref } from 'vue';
import { version } from '../..//package.json'; import { version } from '../..//package.json';
@@ -47,4 +50,8 @@ function toggleLeftDrawer() {
function closeDrawer() { function closeDrawer() {
leftDrawerOpen.value = false; leftDrawerOpen.value = false;
} }
function refresh() {
window.location.reload();
}
</script> </script>