You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
882 B
Vue
35 lines
882 B
Vue
<template>
|
|
<q-page class="flex flex-top">
|
|
<template>
|
|
<div class="q-pa-md">
|
|
<div class="q-gutter-y-md" style="max-width: 100%">
|
|
<q-tabs v-model="detaillink">
|
|
<transition appear enter-active-class="animated zoomIn">
|
|
<q-route-tab
|
|
name="inboundAndOutbound"
|
|
:label="$t('dashboards.inbound_and_outbound_statements')"
|
|
icon="img:statics/dashboard/in_and_out_statement.svg"
|
|
:to="{ name: 'mp_inboundAndOutbound' }"
|
|
exact
|
|
/>
|
|
</transition>
|
|
</q-tabs>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<div class="main-table2"><router-view /></div>
|
|
</q-page>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Pagedashboard',
|
|
data () {
|
|
return {
|
|
detaillink: 'inboundAndOutbound'
|
|
}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|