Answers for "vue prop initial value"

9

vue js default prop

props: {
  name: {
    type: String,
    default: 'John Doe'
  }
}
Posted by: Guest on July-19-2020
1

vuejs set default value for prop

props: {
    title: String,
    default: function () {
      return "John Doe";
    },
  },
Posted by: Guest on August-08-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language