32 lines
515 B
Vue
32 lines
515 B
Vue
<script setup lang="ts">
|
|
import Notifications from "~/components/notification/notifications.vue";
|
|
import PickArticle from "~/components/article/pickArticle.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<v-app-bar
|
|
density="compact"
|
|
:elevation="1"
|
|
>
|
|
<v-app-bar-title>Label Editor</v-app-bar-title>
|
|
|
|
<v-divider
|
|
:vertical="true"
|
|
/>
|
|
|
|
<PickArticle/>
|
|
|
|
<ArticleCreate/>
|
|
|
|
<v-divider
|
|
:vertical="true"
|
|
/>
|
|
|
|
<Notifications/>
|
|
|
|
</v-app-bar>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |