tips:
- 在Vue3中,props除了父组件向子组件传递数据作用,还有数据类型验证的功能,但props属性值需要使用json数据类型
- 如果需要验证的数据类型不正确,会有警告提示
- required验证必填数据,不能为空
- default属性为默认值,也可以用函数进行返回
- validator属性为精准验证
- 基础类型的null和undefined,无法进行类型验证
代码实例:
代码语言:javascript复制<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="app">
<!-- {{msg}}-->
<app-aaa :set="msg"></app-aaa>
</div>
<script>
Vue.createApp({
data(){
return{
//"msg":"888"
"msg":true
}
},
"components":{
"app-aaa":{
//"props":["set"], //可以不放数组,换成放json
"props":{
// "set":String //类型验证,类型不通过时页面仍然可以显示出来
//"set":Number
//"set":[Number,String]
"set":{
"type":Number,
required:true // 可以验证数据有没有赋值
},
"template":`
<div>{{set}}</div>
`
}
}
}).mount("#app")
</script>
</body>
</html>
【小结】
日拱一卒,终有所获。