props

props

  • Type: Array | Object

  • Details:

    A list/hash of attributes that are exposed to accept data from the parent component. It has a simple Array-based syntax and an alternative Object-based syntax that allows advanced configurations such as type checking, custom validation and default values.

  • Example:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    // simple syntax
    Vue.component('props-demo-simple', {
      props: ['size', 'myMessage']
    })
     
    // object syntax with validation
    Vue.component('props-demo-advanced', {
      props: {
        // just type check
        size: Number,
        // type check plus other validations
        name: {
          type: String,
          required: true,
          // warn if not two way bound
          twoWay: true
        }
      }
    })
  • See also: Props

doc_VueJS
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.