[+] Add message property in maintenance

This commit is contained in:
Hykilpikonna
2019-12-02 17:06:40 -05:00
parent c4b27a420f
commit 26ae33f807
+2 -2
View File
@@ -10,12 +10,12 @@
</template>
<script lang="ts">
import {Component, Vue} from 'vue-property-decorator';
import {Component, Prop, Vue} from 'vue-property-decorator';
@Component
export default class Maintenance extends Vue
{
@Prop({required: true}) message: any;
}
</script>