dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
inject object throw component
Cristiano Magro
2024-12-30
1dc4e45a24b81004daf0fb123cd092a850a17475
[udemy/corso-vue.git]
/
08 - component communication
/
cmp-communication-08-a-potential-problem-starting-setup
/
src
/
components
/
KnowledgeBase.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
<section>
<h2>Select a Topic</h2>
<knowledge-grid @select-topic="$emit('select-topic', $event)"></knowledge-grid>
</section>
</template>
<script>
export default {
emits: ['select-topic'],
};
</script>