file: code/ShowTopic.vue 37: methods: { 38: fetchItems() { 39: if (this.topicUrl) { 40: this.axios.get(this.topicUrl).then((response) => { 41: this.topic = response.data; 42: }); 43: } 44: } 45: },
methods