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.
37 lines
970 B
Vue
37 lines
970 B
Vue
|
2 years ago
|
<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="stafflist" :label="$t('staff.staff')" icon="perm_contact_calendar" :to="{ name: 'mp_stafflist' }" exact/>
|
||
|
|
</transition>
|
||
|
|
<transition appear enter-active-class="animated zoomIn">
|
||
|
|
<q-route-tab name="stafflist_check_code" :label="$t('staff.check_code')" icon="published_with_changes" :to="{ name: 'mp_stafflist_check_code' }" exact/>
|
||
|
|
</transition>
|
||
|
|
</q-tabs>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<div :style="{width: '100%', margin: '-10px 10px 0 10px'}">
|
||
|
|
<router-view />
|
||
|
|
</div>
|
||
|
|
</q-page>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'Pagestaff',
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
detaillink: 'stafflist'
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|