22 lines
458 B
Vue
22 lines
458 B
Vue
<script setup>
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
import { useStateStore } from 'stores/useStateStore';
|
|
const stateStore = useStateStore();
|
|
|
|
onMounted(() => {
|
|
stateStore.toggleSubToolbar();
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
stateStore.toggleSubToolbar();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<QToolbar class="bg-vn-dark justify-end">
|
|
<div id="st-data"></div>
|
|
<QSpace />
|
|
<div id="st-actions"></div>
|
|
</QToolbar>
|
|
</template>
|