mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
233 B
Vue
17 lines
233 B
Vue
<template>
|
|
<div>
|
|
<slot :name="path" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'ContentHeader',
|
|
computed: {
|
|
path() {
|
|
return this.$route.path.replace(/^\/(.+?)(\/.+)?$/, '$1')
|
|
},
|
|
},
|
|
}
|
|
</script>
|