1
0
Fork 0
moritzruth.de/components/NavBarTitle.vue

18 lines
326 B
Vue

<style lang="scss">
</style>
<script>
export default {
name: "NavBarTitle",
mounted() {
this.$root.$emit("navbar-title", this.$slots.default[0].text)
},
beforeDestroy() {
this.$root.$emit("navbar-title", "")
},
render(createElement) {
return createElement("")
}
}
</script>