Added subscription page

This commit is contained in:
Peng-YM
2020-08-23 00:56:35 +08:00
parent 72bb2f4edb
commit 0a11261eee
17 changed files with 401 additions and 65 deletions

View File

@@ -34,7 +34,7 @@
>
<v-app-bar-nav-icon @click.stop="toggleMenu"></v-app-bar-nav-icon>
<v-toolbar-title>SubStore</v-toolbar-title>
<v-toolbar-title>{{title}}</v-toolbar-title>
</v-app-bar>
@@ -56,6 +56,12 @@ export default {
doNothing: function () {
}
},
computed: {
title: function () {
return this.$store.state.title;
}
}
}
</script>