mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
14 lines
214 B
Vue
14 lines
214 B
Vue
![]() |
<script lang="ts">
|
||
|
export default {
|
||
|
props: ['title'],
|
||
|
watch: {
|
||
|
title: {
|
||
|
immediate: true,
|
||
|
handler() {
|
||
|
document.title = this.title;
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|