<template>
<div>{{ topic }}</div>
</template>
<script lang="ts">
import { Vue } from 'vue-property-decorator'
export default class TopicPage extends Vue {
private topic = ''
}
</script>
encountered issue:
Property or method "topic" is not defined on the instance but referenced during render. Ensure that this property is reactive, either in the data option, or for class-based components, by initializing the property.