Update Example.vue: add <style scoped>

This commit is contained in:
Timothée Goguely 2024-09-04 11:43:06 +02:00
parent ba1715f4eb
commit 17c1926a3d

View file

@ -2,6 +2,11 @@
<h1>{{ data.content.title }}</h1>
<!-- ... -->
</template>
<style scoped>
</style>
<script setup>
const { data } = defineProps({
data: Object,