1
2// Do you think an array is acceptable? Not.
3<price-block value=“[]” />
4
5// With your component should handle these small checks
6
7{
8 props:
9 value: {
10 type: Number, // what type is it?
11 required: true, // is required?
12 default: 0, // default value? YES always put a default value on custom component
13 validator() {
14 return // your validations for more strict checks
15 }
16 }
17 }
18}