<template>
<div>title: {{ title }}</div>
<div>list: {{ list }}</div>
</template>
<script lang="ts" setup>
import { ref } from "vue";
withDefaults(
defineProps<{
title: string;
list: number[];
}>(),
{
list: () => [4, 87, 3],
}
);
</script>
<style scoped></style>