JavaScript
<script setup>
const props = defineProps({
index:{
type: Number, // 强制数据类型
default: 1, // 默认值
required: false, // 不是必需
validator: value=>{ // 验证
return value>=0
}
},
msg: 'hello',
labels: () => ['one', 'two'],
foo: "ddd"
})