1
0
Fork 0

Update projects and some improvements

This commit is contained in:
Moritz Ruth 2020-08-05 00:09:02 +02:00
parent 4158d6da05
commit 85dd304682
No known key found for this signature in database
GPG key ID: AFD57E23E753841B
14 changed files with 147 additions and 639 deletions

View file

@ -0,0 +1,18 @@
<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>