3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-18 15:00:00 +00:00
zeppelin/dashboard/src/components/Title.vue

16 lines
237 B
Vue
Raw Normal View History

2020-07-30 13:08:06 +03:00
<template></template>
<script lang="ts">
export default {
props: ['title'],
watch: {
title: {
immediate: true,
handler() {
document.title = this.title;
},
},
},
};
</script>