dashboard
repositories
filestore
activity
search
login
udemy
/
corso-vue
corso vuejs
summary
reflog
commits
tree
docs
forks
compare
view
|
history
|
commit
|
commitdiff
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
commit
|
author
|
age
32b599
1
<template>
CM
2
<section>
3
<h2>{{ topicTitle }}</h2>
4
<p>{{ text }}</p>
5
</section>
6
</template>
7
8
<script>
9
export default {
10
props: ['topicTitle', 'text'],
11
};
12
</script>