summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 14:42:25 +0300
committerMaksim Zakharov <m.zakharov@IBS.RU>2022-06-20 17:49:26 +0300
commitbde69949362b9dfd1a24fd6fd810116fa3136b5a (patch)
treed049c6d6f07a895db02d824509604ce62dbf2f92 /src/components
parent931c2cad0da1a84e3df0745b385ec06d29cc2634 (diff)
downloadwebui-vue-bde69949362b9dfd1a24fd6fd810116fa3136b5a.tar.xz
fix PageTitle, VirtualMedia
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Global/PageTitle.vue7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Global/PageTitle.vue b/src/components/Global/PageTitle.vue
index 20bc8050..3f8ffe66 100644
--- a/src/components/Global/PageTitle.vue
+++ b/src/components/Global/PageTitle.vue
@@ -12,10 +12,15 @@
<script>
export default {
name: 'PageTitle',
+ props: {
+ description: {
+ type: String,
+ default: '',
+ },
+ },
data() {
return {
title: this.$route.meta.title,
- description: this.$route.meta.description,
};
},
};