mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-23 17:23:59 -05:00
Switch new display to Vue
This commit is contained in:
33
WebDisplay/src/App.vue
Normal file
33
WebDisplay/src/App.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<v-app>
|
||||
<v-app-bar title="Home Monitor" color="primary"></v-app-bar>
|
||||
|
||||
<v-navigation-drawer expand-on-hover rail>
|
||||
<v-list density="compact" nav>
|
||||
<v-list-item
|
||||
prepend-icon="mdi-view-dashboard"
|
||||
title="Dashboard"
|
||||
to="/">
|
||||
</v-list-item>
|
||||
<v-list-item
|
||||
prepend-icon="mdi-sun-thermometer"
|
||||
title="Outside"
|
||||
to="outside">
|
||||
</v-list-item>
|
||||
<v-list-item
|
||||
prepend-icon="mdi-home-analytics"
|
||||
title="Inside"
|
||||
to="inside">
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-navigation-drawer>
|
||||
|
||||
<v-main>
|
||||
<router-view />
|
||||
</v-main>
|
||||
</v-app>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
//
|
||||
</script>
|
||||
Reference in New Issue
Block a user