This commit is contained in:
syuilo 2019-06-07 20:24:07 +09:00
parent a1f794ee05
commit dacc713f99
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -1,5 +1,5 @@
<template>
<div v-if="page" class="iroscrza" :class="{ shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners, center: page.alignCenter }" :style="{ fontFamily: page.font }">
<div v-if="page" class="iroscrza" :class="{ shadow: $store.state.device.useShadow, round: $store.state.device.roundedCorners, center: page.alignCenter }" :style="{ fontFamily: page.font }" :key="path">
<header>
<div class="title">{{ page.title }}</div>
</header>
@ -85,7 +85,24 @@ export default Vue.extend({
};
},
computed: {
path(): string {
return this.username + '/' + this.pageName;
}
},
watch: {
path() {
this.fetch();
}
},
created() {
this.fetch();
},
methods: {
fetch() {
this.$root.api('pages/show', {
name: this.pageName,
username: this.username,
@ -108,7 +125,6 @@ export default Vue.extend({
});
},
methods: {
getPageVars() {
return collectPageVars(this.page.content);
},