dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
style scoped locali
Cristiano Magro
2024-12-30
ac100de8d8e0fc85e34cde9aec6262259b12f96c
[udemy/corso-vue.git]
/
08 - component communication
/
cmp-communication-08-a-potential-problem-starting-setup
/
src
/
components
/
ActiveElement.vue
1
2
3
4
5
6
7
8
9
10
11
12
<template>
<section>
<h2>{{ topicTitle }}</h2>
<p>{{ text }}</p>
</section>
</template>
<script>
export default {
props: ['topicTitle', 'text'],
};
</script>