Init.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-footer
|
||||
:app="true"
|
||||
:rounded="true"
|
||||
color="red"
|
||||
>
|
||||
<div class="px-4 py-2 bg-black text-center w-100">
|
||||
{{ new Date().getFullYear() }} — <strong>Vuetify</strong>
|
||||
</div>
|
||||
</v-footer>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
@@ -0,0 +1,23 @@
|
||||
<script setup lang="ts">
|
||||
import Notifications from "~/components/notification/notifications.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<v-app-bar
|
||||
density="compact"
|
||||
:elevation="1"
|
||||
>
|
||||
<v-app-bar-title>Label Editor</v-app-bar-title>
|
||||
|
||||
<v-divider
|
||||
:vertical="true"
|
||||
/>
|
||||
|
||||
<Notifications/>
|
||||
|
||||
</v-app-bar>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user