16 lines
347 B
Vue
16 lines
347 B
Vue
<script setup lang="ts">
|
|
import { ResumeComponentPlacement } from '@/types/resume';
|
|
|
|
const props = defineProps<{
|
|
componentPlacement: ResumeComponentPlacement | null
|
|
}>();
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full">
|
|
I'm an name component : {{ props.componentPlacement?.component_data?.input_data[0].value }}
|
|
|
|
</div>
|
|
</template>
|