test the provide

This commit is contained in:
Andreas Zweili 2021-02-03 22:05:05 +01:00
parent a98a7296d5
commit 0becd05b7c
1 changed files with 10 additions and 0 deletions

View File

@ -41,6 +41,16 @@ export default {
activateTopic(topicId) {
this.activeTopic = this.topics.find(topic => topic.id === topicId);
}
},
mounted() {
setTimeout(() => {
this.topics.push({
id: 'events',
title: 'events',
description: 'Events are important',
fullText: 'Events allow you to trigger code on demand!'
});
}, 3000);
}
};
</script>