23 lines
316 B
Vue
23 lines
316 B
Vue
<script setup>
|
|
import AppLayout from "../Layouts/AppLayout.vue";
|
|
|
|
const props = defineProps({
|
|
data: {
|
|
type: Array,
|
|
default: []
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<AppLayout>
|
|
<pre v-for="d in data">
|
|
{{ d }}
|
|
</pre>
|
|
</AppLayout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|