<template>
<div>
<Topic
:lang="lang"
:topic-sdk="topicSdk"
/>
</div>
</template>
<script>
import { Topic as TopicSdk} from '@polyv/interactions-receive-sdk';
import Topic from '@polyv/interactions-receive-sdk-ui-default/lib/PcTopic';
export default {
components: {
Topic,
},
data() {
return {
// 话题SDK实例
topicSdk: null,
};
},
created() {
this.topicSdk = new TopicSdk();
},
beforeDestroy() {
this.topicSdk?.destroy();
},
};
</script>