I'm new to Vue and asking myself why I often see a : infront of a Vue component attribute?
I use Ionic with with and for example in the starter template I have the following:
<template>
<ion-page>
<ion-header :translucent="true">
...
</ion-page>
</template>
Why here is a :? The result will be the same if i remove the :
The result will be the same if i remove the :Try to access the viewmodel properties without:or write some javascript expression to see the difference.