<template>
<h2>Example $root Object</h2>
<p>The 'text' data property can be reached and manipulated directly from a child component by the use of the $root object.</p>
<pre>{{ text }}</pre>
<info-box />
</template>
<script>
export default {
data() {
return {
text: 'Initial text in the root component.'
}
}
}
</script>
<style>
pre {
background-color: lightgreen;
padding: 5px;
}
</style>