web: add logout button

This commit is contained in:
Mika 2024-07-09 11:49:29 +02:00
parent af056c0dec
commit 1219796b9a
2 changed files with 11 additions and 2 deletions

4
web/components.d.ts vendored
View file

@ -7,6 +7,10 @@ export {}
declare module 'vue' {
export interface GlobalComponents {
ActionToolbar: typeof import('./src/components/actionToolbar.vue')['default']
CategoryContainer: typeof import('./src/components/CategoryContainer.vue')['default']
HeaderBar: typeof import('./src/components/HeaderBar.vue')['default']
ListViewElement: typeof import('./src/components/ListViewElement.vue')['default']
LoginPage: typeof import('./src/components/loginPage.vue')['default']
}
}

View file

@ -19,12 +19,17 @@
clearable
rounded="pill"
></v-text-field>
<v-btn icon variant="outlined" >
<LogOut />
</v-btn>
</v-toolbar>
</div>
</template>
<script setup lang="ts">
import { LogOut } from 'lucide-vue-next';
</script>
<style scoped>