Can the vue calculation property listen for values passed from the parent component?

props: ["optionss"],
computed: {

optionss() {
  return this.options.name.substr(0, 1);
},

},
it is incorrect to write this way

Apr.09,2021

of course you can.
pay attention to your name:

  JSFIDDLE  

Menu