网络编程
位置:首页>> 网络编程>> JavaScript>> Vue子组件内的props对象参数配置方法

Vue子组件内的props对象参数配置方法

作者:雨季mo浅忆  发布时间:2024-04-30 10:39:09 

标签:Vue,子组件,props

这篇文章主要介绍了Vue子组件内的props对象里的default参数是如何定义

Array、Object、或Function默认值的正确写法说明,具有很好的参考价值

Vue子组件内的props对象参数配置方法

一、简单数据类型

1、布尔类型 Boolean

正确写法 :

props: {
   demoBoo: {
     type: Boolean,
     default: true,
   },
 },

2、数字类型 Number

正确写法 :

props: {
   demoNum: {
     type: Number,
     default: 1,
   },
 },

3、字符串类型 String

正确写法 :

props: {
   demoStr: {
     type: String,
     default: 'hello',
   },
 },

二、复杂数据类型

1、数组 Array

错误写法 :

props: {
   demoArr: {
     typeof: Array,
     default: [],
   },
 },

Eslint 语法报错 :

Invalid default value for prop “demo”: Props with type Object/Array must use a factory function to return the default value.

Vue子组件内的props对象参数配置方法

正确的常规写法 :

props: {
   demoArr: {
     type: Array,
     default: function () {
       return [];
     },
   },
 },

或是用 箭头函数 :

props: {
   demoArr: {
     type: Array,
     default: () => [],
   },
 },

2、对象 Object

错误写法 :

props: {
   demoObj: {
     type: Object,
     default: () => {},
   },
 },

正确的常规写法 :

props: {
   demoObj: {
     type: Object,
     default: function () {
       return {};
     },
   },
 },

或是用 箭头函数 :( 注意 : 这里的对象一定要用小括号包裹起来( { } )

props: {
   demoObj: {
     type: Object,
     default: () => ({}),
   },
 },

3、函数 Function

正确写法 :

props: {
   demoFun: {
     type: Function,
     default: () => {},
   },
 },

补充知识 :Vue 传参 props 里面为什么要带 type , 还有 default ?

Vue子组件内的props对象参数配置方法

这个是子组件, 写 type 的 意思 是 swiperDate 传过来的数据类型是 数组 ,

default就是 表示 不传 ,默认返回 的 [ ] , 空数组 .

Vue子组件内的props对象参数配置方法

这种就是 表示 传的数据类型Number, 不传默认是 数字 0 。

来源:https://blog.csdn.net/weixin_58099903/article/details/126428326

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com