Declare property in detail

This commit is contained in:
Björn Fromme
2018-09-29 17:46:40 +02:00
parent e32f59bc72
commit 092e014c42
@@ -10,6 +10,13 @@
<script>
export default {
props: [ 'services' ]
props: {
services: {
type: Array,
default () {
return []
}
}
}
}
</script>