<template>
<div class="box">
<p>Text in .box</p>
</div>
<p>Text not in .box</p>
</template>
<script setup>
</script>
<style scoped>
.box p {
color: red
}
</style>
<template>
<div class="box">
<p>Text in .box</p>
</div>
<p>Text not in .box</p>
</template>
<script setup>
</script>
<style scoped>
.box p {
color: red
}
</style>